Austin Bonander
Austin Bonander
### Relevant scope Other: describe below ### Description I'm working on a Rust implementation of the backend spec, and I'm using [`time 0.2`](https://crates.io/crates/time/0.2.27) for timestamps such as the `createdAt` timestamps...
C-like enums with an explicit `#[repr()]` attribute can be cast to that integer type, but there's no easy way to convert back: ```rust #[repr(i16)] enum MyEnum { Foo = 1,...
@dcampbell24 @thelink2012 [So, Sourceforge users are fleeing _en masse_](http://www.reddit.com/r/programming/comments/386c75/sourceforge_locked_in_projects_of_fleeing_users/) after finding out that [SF is adding ads to software without the project owners' consent.](http://www.reddit.com/r/programming/comments/37h8ad/sourceforge_took_control_of_the_gimp_account_and) This is a bit of a...
It appears that the `IterVariants` derive will only produce a private `fn iter()` which makes it only useful in the module where the enum is defined. I'd like to see...
This exists in `strum` and `derive-more` but the former is complicated and the latter doesn't have `FromStr` or `TryFrom` derives for enums. I rather like the simplicity and narrowed scope...
Allow service methods to view the response and map the value internally.
I've put a lot of thought into the design of Anterofit, and I've tried to anticipate the most common and the most interesting use-cases, but there's some parts I'm still...
Generating JWTs for client API access to Twilio requires setting the `cty` field of the JWT header to a specific magic string: https://www.twilio.com/docs/iam/access-tokens#jwt-format > `cty` is the content-type and encodes...
Currently the Android app version has ads but no way to remove them besides AdBlock, and I don't like doing that to good app authors. I would rather support their...
A lot of people will probably agree with me when I say there's room for improvement with how we currently log queries. 1. Logging is very noisy because we always...