Explore >> Select a destination


You are here

www.billtalkstoomuch.com
| | nodogmablog.bryanhogan.net
3.8 parsecs away

Travel
| | If you serialize an already serialized string, the serializer will replace double quotes with \\u0022. Here is a way to get back the familiar \\".
| | www.darrenhorrocks.co.uk
7.1 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.
| | jameschambers.com
5.9 parsecs away

Travel
| | Even when you're dealing with Function Apps that have limited scope it's a good idea to break your scripts up into manageable, possibly reusable chunks. This is especially true if you want to work wit
| | til.simonwillison.net
15.4 parsecs away

Travel
| Azure Functions default to serving traffic from a path like /api/FunctionName - for example https://your-subdomain.azurewebsites.net/api/MyFunction .