Ryan Crosby

Results 67 comments of Ryan Crosby

There's already a low battery warning built into the firmware - we could reuse this for the RSSI warning? Anyone know how the state is managed for the alarm? I'm...

It looks like https://github.com/zhiyuan-l/qrcodejs is pretty much the most "up-to-date" version of the code, with many of the PRs merged (bugfixes and added border option). See: https://github.com/davidshimjs/qrcodejs/issues/177

Ran into this issue when implementing Dark Mode on my website - the QR code will not scan if there isn't a white region surrounding it. Given how many times...

The track is back up, but I've uploaded the raw patch to pastebin just in case it goes down again: https://pastebin.com/HJQbr1xD

This feature would be great when used in conjunction with a source generator based DI system like https://github.com/YairHalberstadt/stronginject. It would make Refit usable in embedded applications which benefit heavily from...

> Microsoft: "Please rewrite your entire library and spend hours of your limited _free_ developer time, because we broke it. Again. Users will receive absolutely no new feature or benefit...

Thanks for re-opening the issue. Just briefly on reflection not working in NativeAOT vs working Xamarin AOT (iOS), I believe that this isn't a new issue, rather it comes down...

The correct way to fix this is to change the before and after save behaviour. `builder.Entity().Property(d => d.CreatedAt).Metadata.BeforeSaveBehavior = PropertySaveBehavior.Ignore;` `builder.Entity().Property(d => d.CreatedAt).Metadata.AfterSaveBehavior= PropertySaveBehavior.Ignore;` `BeforeSaveBehavior` will prevent EF from specifying...

https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/blob/c12d7ca837b0df9d9d1104c6cae6476e1ee189e6/src/EFCore.MySql/Metadata/MySqlPropertyAnnotations.cs#L72-L78 I believe this is the issue. When a default value (or default value SQL) is set, the value generation strategy is short-circuited to null. This isn't intuitive and I...

OK I think I have a workaround for the Inserted and Updated timestamps: ``` entity.Property(d => d.CreatedTime).ValueGeneratedOnAdd(); entity.Property(d => d.UpdatedTime).ValueGeneratedOnAddOrUpdate(); entity.Property(d => d.CreatedTime).Metadata.BeforeSaveBehavior = PropertySaveBehavior.Ignore; entity.Property(d => d.CreatedTime).Metadata.AfterSaveBehavior = PropertySaveBehavior.Ignore;...