Ryan Crosby

Results 67 comments of Ryan Crosby

Agreed, comment should be `/* Set x=0xFFFFFFFFFFFFFFFF if x=0xFFFFFFFFFFFF0000, else x=0 */`, although maybe something like: `/* Bitwise OR the upper bytes of x over the lower two bytes of...

@Peskind Thanks for this code, was exactly what I was looking for. Given that .NET 3.0 and below aren't even officially supported anymore, does it make sense to change `SocketCanFactory.CreateSocket()`...

It appears based on this [2005 discussion](https://discussions.apple.com/thread/178557?sortBy=best) that the iPod's [MBR](https://en.wikipedia.org/wiki/Master_boot_record) has a "DBR" (DOS Boot Record, aka an MSDOS [Volume Boot Record](https://en.wikipedia.org/wiki/Volume_boot_record)) overlaid onto it. What I actually think...

@bachterman Thank you for the report, your boot sector looks like: ``` 00000000 EB 58 90 4D 53 44 4F 53 35 2E 30 00 02 20 00 02 ëX.MSDOS5.0.....

@clement911 I have been using a slightly different approach to solve the equivalent of `WHERE IN` for multiple columns, for example for the case of a table containing key value...

OK, I've proven that the power LED conversion from open-drain to open-emitter seems to work: https://www.youtube.com/watch?v=Xaz2W8P86kY The setup is: Mobo LED +ve output -> PNP Collector Mobo LED -ve output...

Hi, thanks for the suggestion! Could you please elaborate on the usecase for pre-tokenizing a string? Currently we already have `.FormattableWith()` for creating [FormattableStrings](https://learn.microsoft.com/en-us/dotnet/api/system.formattablestring?view=net-8.0). Is this new `ParameterizedString` for more...