/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

www.stevejgordon.co.uk
| | chrisoldwood.blogspot.com
7.4 parsecs away

Travel
| | Tales of a computer programmer.
| | haacked.com
2.4 parsecs away

Travel
| | You may want to deserialize JSON to strongly typed values, but sometimes you run into a situation where the API doesn't comply, until now.
| | www.darrenhorrocks.co.uk
7.2 parsecs away

Travel
| | Building APIs that handle large datasets can be a challenge. A common approach is to collect all the data into a list, convert it to JSON, and then send it all at once. But what happens when that dataset is massive? Your API might freeze up while it's building the response, and you could end up with a huge memory footprint. Fortunately, ASP.NET Core provides a great solution for this problem: IAsyncEnumerable.
| | damienbod.com
25.8 parsecs away

Travel
| This article shows how an ASP.NET Core Razor Page application could implement an automatic sign-out when a user does not use the application for n-minutes. The application is secured using Azure AD B2C. To remove the session, the client must sign-out both on the ASP.NET Core application and the Azure AD B2C identity provider or...