kangalio
kangalio
> We cannot just deem certain enums as "oh well Discord will never add a variant" I said "Some enums won't realistically get **new fields in existing variants**". > The...
> Ah okay, would it not be fixed by splitting the enum struct fields into their own structs, then referencing them in the enums? Then a new function or something...
> I'll try something The following macro works for the current state of Trigger (all fields required) Code ```rust macro_rules! forward_compatible_enum { ( pub enum $enum_name:ident { $( $variant_name:ident($struct_name:ident {...
Good point, I should have added a link to check on the issue. Rummaging through my browser history, I found https://github.com/launchbadge/sqlx/issues/1260 which links to https://github.com/launchbadge/sqlx/issues/1399, both of which are still...
Would a PR be accepted which fixes this?
Interesting. Symphonia currently supports 7 types of .wav formats https://github.com/pdeljanov/Symphonia/blob/fcca3257ae2be13b9ba38771bc165cc842e8b596/symphonia-format-wav/src/chunks.rs#L581-L589 But the mentioned mmreg.h file has [265 formats](https://github.com/tpn/winsdk-10/blob/9b69fd26ac0c7d0b83d378dba01080e93349c2ed/Include/10.0.14393.0/shared/mmreg.h#L2108-L2372). Would Symphonia ideally eventually support them all?
I'm currently trying to work on this. Question: how to get a MediaSourceStream from a ReadBytes in order to plug it in to OggReader::try_new? (Is there a better place for...
When I use a hex editor to remove the bytes up to `OggS` it seems to become a perfectly OGG Vorbis file and plays in anything I've tried. Suggesting that...
Not the same as average. Using a simple average (mean) has the important disadvantage that every single bpm gimmick will push the average bpm up or down. The median doesn't...
Can a GNOME extension declare external dependencies like this? If so, it would be very neat to have that. If not, maybe tophat could somehow catch this error and add...