Louis Pilfold

Results 1855 comments of Louis Pilfold

Sounds good! It would be nice to be able to specify just a major or major and minor version too. ``` gleam add gleam_json@1 gleam add [email protected] ```

> Perhaps the checksum of the package tarball should be compared to the one in the cache instead of just assuming it's the same because of the version number? This...

Good point RE discarding the old version. --- ## Use checksum as a key 1. Simple implementation. 2. Slightly less work at runtime as don't need to read+parse metadata before...

I've found a bug! This code results in extra spacing ```gleam pub fn handle_request(request: Request) { case request.method { } } ``` ```gleam case request.method { http.Connect -> todo http.Delete...

Thank you. Does this break any of your projects?

Bit array patterns are so tricky! Lots of weird restrictions I didn't realise. We could remove the `65 =` and push a guard of `A =:= 65` perhaps? Seems like...

Hello! What's the use case here? Could you give some examples from your programs and how these functions would help with them. Thanks!

They seem about the same to me, and it's nice that the constant one has no runtime cost. I've done a search on GitHub and it seems that directly constructing...