/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

brianreiter.org
| | lowleveldesign.org
15.1 parsecs away

Travel
| | While playing with EventPipes, I wanted to better understand the Diagnostic IPC Protocol. This protocol is used to transfer diagnostic data between the .NET runtime and a diagnostic client, such as, for example, dotnet-trace. When a .NET process starts, the runtime creates the diagnostic endpoint. On Windows, the endpoint is a named pipe, and on...
| | whatibroke.com
6.6 parsecs away

Travel
| | Hey everyone, Just a quick post on how to use postman with a gRPC endpoint using .net core. Add the grpc reflection package to your project: dotnet add package Grpc.AspNetCore.Server.Reflection Add to the container and include the middleware in your program.cs: builder.Services.AddGrpc(); # Add this line. builder.Services.AddGrpcReflection(); var app = builder.Build(); app.MapGrpcService(); # Add this
| | codeblog.jonskeet.uk
10.9 parsecs away

Travel
| | As part of my church A/V system (At Your Service), I run a separate local web server to interact with the Zoom SDK. Initially this was because the Zoom SDK would only run in 32-bit processes and I needed a 64-bit process to handle the memory requirements for the rest of the app. However, it's...
| | stackchief.com
43.8 parsecs away

Travel
| Spring Data JPA CRUD example including extending the CrudRepository interface, creating, reading, updating, and deleting managed entities.