A self-hostable collection of privacy-first web utilities built with ASP.NET Core and Blazor.
It's mostly a collection of tools that I often find myself quickly googling, but oftentimes it's never clear whether or not your that JSON response with API keys, etc. will end up in the wrong hands.
A few reasons:
- I've been slowly getting into game dev and this was the perfect opportunity to improve my C# in a familiar context
- I wanted a compiled langauge for performance, especially for the upcoming video features, and I've heard good things about C#.
- I have always liked the idea of using a single language to build full-stack web applications. I have tried Laravel and Go. Maybe 3rd time's the one. Plus, C# is also useful beyond just the web, and I can't say the same for Ruby.
- Privacy First: All processing happens on your server
- ✅ JSON Formatter: Validate and beautify JSON
- ✅ Image Tools: Convert, compress, and process images
- [] PDF Tools: Convert PDFs to images
- [] Video Tools: Create GIFs from video clips
- 🕐 Text Utils: Base64, slugify, UUID, hashing
docker run --rm -p 8080:8080 ghcr.io/tmunongo/tinyutils# Install dependencies
dotnet restore
# Run in watch mode
dotnet watch run
# Run tests
dotnet test