Skip to content

Instantly share code, notes, and snippets.

View ciurca's full-sized avatar
🧠
Learning

radu ciurca

🧠
Learning
View GitHub Profile
@cjavilla-stripe
cjavilla-stripe / Program.cs
Created December 27, 2021 17:46
Stripe webhook handler for .NET 6 minimal API
using Stripe;
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapPost("/webhook", async (HttpRequest request) =>
{
var json = await new StreamReader(request.Body).ReadToEndAsync();
const string signingSecret = "whsec_...";
@dideler
dideler / 0-startup-overview.md
Last active March 14, 2025 15:00
Startup Engineering notes