Paulo Faria
Paulo Faria
I'm having trouble changing the webapp example to allow reading the request body. My idea was to detach after receiving the fields, receive the body, attach again to send the...
Regular files don't switch context the way they're implemented now. The reason is because regular files ignore [O_NONBLOCK](https://github.com/sustrik/libmill/blob/master/file.c#L54). So they never return [EAGAIN](https://github.com/sustrik/libmill/blob/master/file.c#L112) or [EWOULDBLOCK](https://github.com/sustrik/libmill/blob/master/file.c#L112). So since we can't use...
Function `getGraphQLType` has a Cognitive Complexity of 8 (exceeds 5 allowed). We should break this function into smaller functions. https://codeclimate.com/github/GraphQLSwift/Graphiti/Sources/Graphiti/Definition/TypeProvider.swift#issue_5f28b20e356d980001000033
Function `name` has a Cognitive Complexity of 12 (exceeds 5 allowed). We should break this function into smaller functions. https://codeclimate.com/github/GraphQLSwift/Graphiti/Sources/Graphiti/Definition/Reflection.swift#issue_5f28b20e356d980001000037
Hello, I'm creating this issue mainly to find out if there is work being done about porting ChecklistTaskView to SwiftUI. If there's no one working on this I'll gladly assign...
[libdill](http://libdill.org/chsend.html)'s implementation of structured concurrency fails on channel operations when a coroutine (analogous to a `Task` in Swift) is canceled. I think it might be good practice to do the...