Jamie Gaskins
Jamie Gaskins
Right now, signature verification only checks that the signature provided in the request headers is correct based on the public key URL provided in the body of the request. It...
Fixes #14603 I haven't added decoding yet because I didn't have the code for that already written. This is a decent proof of concept, generating 100MB of binary data, writing...
Related to #2964 [Originally mentioned on the forum](https://forum.crystal-lang.org/t/base64-encoding-a-large-value/6852?u=jgaskins) In order to base64-encode data with `Base64.encode`, that data must exist in RAM. Technically, it just needs to be something that responds...
The compiler thinks it detects a recursive struct with this code: ```crystal abstract struct Content end record Text < Content record Image < Content record Result < Content, content :...
I have the concept of a `Transaction` in my app, and when I added a property whose type included that name (in my case it was a `Transaction::Status` enum), it...
Allow top-level property types to have the same name as DB-namespaced ones. Fixes #205
Reported by @bendangelo [here](https://github.com/jgaskins/grpc/issues/5#issuecomment-2162157939) TODO: Find and link to docs for this command — I've never heard of it before 😄
One of the limitations of templates currently is that you can't pass blocks to them in templates while also capturing the result as a value: ```ecr ``` This sort of...