Ryan Crosby

Results 66 comments of Ryan Crosby

> This could be relatively simple to implement (When MFC emulation is in place) but you will most likely need to take the nonce's from the reader to another device...

>Wow, I'm surprised I didn't stumble across ProjectZeroSlackr earlier! I assumed most iPod development ended ~2007, but hey, I guess not 😅 ZeroSlackr was a late discovery of mine also....

Hi @daniel5151, me again. I've finally come back around to this project and managed to get my build of iPodLoader2 working with arm-none-eabi. The trick is that only `-Og` and...

Hi @ricardona, unfortunately there is currently no way to explicitly set the `CultureInfo` (or more generally, the `IFormatProvider`) while calling `FormatWith`. However, this is something I will look at adding...

@ricardona I've just remembered the third (and probably best) way to do this using FormatWith v3: Using `FormattableWith()` // Get Spanish IFormatProvider IFormatProvider formatProvider = CultureInfo.CreateSpecificCulture("es"); var template = "{d:dddd,...

@JeremySkinner I've finally got your PR merged, apologies it took so long! It's still a work in progress, but I've overhauled the public FormatWith API to enable `ReadOnlySpan` based scenarios....

This will potentially solve https://github.com/crozone/FormatWith/issues/23.

Passing strings as the brace parameter is not supported. This is because the library is hardcoded to assume that a pair of either brace character is an escaped brace, and...

Yep, basic sub-property traversal is supported. Your example will work and produce the string "test". For implementation details, it was implemented in this PR: https://github.com/crozone/FormatWith/pull/13/commits Note that array syntax is...

@chibicitiberiu what dictionary format/layout did you try? If that was your first intuition when using the library, it will very likely be others as well, I could look at supporting...