Public viewer

The journey of every round

Every round-trip in the corpus is public. Open one to see the prompt, the zero-point index, the baseline response, the enhanced response, and how each grader read the difference. Leave a comment if a grader's reading lands — or doesn't.

#71710 May 26

Use IRequestHandler<TRequest, TResponse> with a request that wraps an IAsyncEnumerable<T> stream for paged streaming response.

V1BetterV2ΔLcsharp
#71610 May 26

Implement a JwtBearerOptions handler that validates a custom claim transformation using IClaimsTransformation in DI.

V1BetterV2ΔL+0.4csharp
#71510 May 26

Add health checks using IHealthCheckPublisher with a custom HealthCheckResult that exposes degraded state metrics.

V1BetterV2ΔL+0.0csharp
#71410 May 26

Implement an IObservable<T> stream over Channel<T> with backpressure, completing on CancellationToken cancellation.

V1BetterV2ΔL+0.1csharp
#71310 May 26

Set up a circuit breaker via ResiliencePipelineBuilder with exponential backoff, AddTimeout, AddRetry, and AddCircuitBreaker stacked.

V1BetterV2ΔL+0.0csharp
#71210 May 26

Add a custom IValidatorFactory hook that resolves AbstractValidator<T> from DI and runs ValidationContext<T> with a custom rule set name.

V1BetterV2ΔL+0.0csharp
#71110 May 26

Write a Roslyn ISourceGenerator that emits boilerplate INotifyPropertyChanged for all [Notify] attributed properties.

V1BetterV2ΔL+0.0csharp
#71010 May 26

Implement a token refresh middleware using IMiddleware (not the convention-based one), with RequestDelegate and DelegatingHandler chained.

V1BetterV2ΔL+0.3csharp
#70910 May 26

Use IRequestPreProcessor<TRequest> in MediatR to inject the current ClaimsPrincipal into every request before handler dispatch.

V1BetterV2ΔL-0.1csharp
#70810 May 26

Add IDistributedCache with backplane invalidation on a config change, using IOptionsMonitor<T> reload notifications.

V1BetterV2ΔL-0.1csharp
#70710 May 26

Wire OpenTelemetry tracing: ActivitySource for traces, Meter for metrics, with ILogger<T> structured logs feeding both.

V1BetterV2ΔL-0.1csharp
#70610 May 26

Implement a custom AuthenticationHandler<TOptions> for a header-based API key, including ChallengeAsync and AuthenticateResult.

V1BetterV2ΔL+0.0csharp
#70510 May 26

Write a BackgroundService that uses IServiceScopeFactory to resolve a scoped DbContext per iteration, with retry via ResiliencePipeline.

V1BetterV2ΔL+0.2csharp
#70410 May 26

Add a Channel<T>-based bounded producer-consumer with backpressure, using BoundedChannelFullMode.Wait and a CancellationToken end-to-end.

V1BetterV2ΔL+0.0csharp
#70310 May 26

Write a custom IPipelineBehavior<TRequest, TResponse> for MediatR that captures FluentValidation errors and re-throws as a structured ValidationException.

V1BetterV2ΔL-0.1csharp
#70210 May 26

Implement a graceful shutdown handler using IHostApplicationLifetime, with a 30-second drain window and structured logging at each phase.

V1BetterV2ΔL+0.0csharp
#67610 May 26

Find the date with the highest number of new signups in a users table.

V1BetterV2ΔLcsharp
#67510 May 26

Use HAVING to filter aggregate results: orders with more than 5 line items.

V1BetterV2ΔLcsharp
#67410 May 26

Write a SQL query joining 4 tables (customers, orders, line_items, products) to produce a customer-order-product report.

V1BetterV2ΔLcsharp
#67310 May 26

Find products in the top 10 percent by revenue using NTILE.

V1BetterV2ΔLcsharp
#67210 May 26

Calculate the gap in days between consecutive logins per user using LAG.

V1SameV2ΔLcsharp
#67110 May 26

Use EXISTS to find customers with at least one cancelled order.

V1BetterV2ΔLcsharp
#67010 May 26

Find the median salary in each department using window functions.

V1SameV2ΔLcsharp
#66910 May 26

Write a recursive CTE to walk an employee-manager hierarchy from any starting employee.

V1BetterV2ΔLcsharp