David Herman
David Herman
(Migrating a comment from an issue that was just marked closed as duplicate) Warp is amazing, but there's friction every week: * get a notification * download Warp from the...
> Soooo... I'm not sure when this happened, but the issue seems to be fixed now! I just updated Warp with a single button press!!! This comment got me hopeful,...
@dpolivaev even though this issue is by far my most aggravating friction point with Warp and it dampens any enthusiasm I'd have recommending Warp to other Mac devs, I feel...
I'm imagining a class that looks something like this: ```kotlin import io.ktor.http.content.MultiPartData class Multipart private constructor(private val produce: () -> MultiPartData) { suspend fun forEachPart(handlePart: MultipartScope.() -> Unit) { val...
@FlyingPig525 Please consider dropping some concrete code, to make sure I'm not missing something that I don't see as well as you do. My understanding with multipart data is that...
If you're curious, here are the four part types provided by ktor: https://api.ktor.io/ktor-http/io.ktor.http.content/-part-data/index.html Unfortunately, not really well documented. But you can see there's some common properties across all of them...