Roel Brook

Results 8 comments of Roel Brook

After the Java vs C# video, I was working on an unsafe pointer based version, which I guess would give similar performance to this. Unfortunately, my laptop crashed. One thing...

Wow. Wasn't expecting that. Ctrl-Alt-Delete does sometimes work on Windows 10, but not on Windows 11. Any similarity in hardware? Also HP notebooks?

Thanks a lot for taking the time to write such a detailed response. I fiddled around with the settings you're referring to. With my main Windows 11 laptop, I'm currently...

Just ran ApiPort.exe to verify compatibility. It seems as if at least vapi-runtime is almost .NET standard compliant: ![image](https://user-images.githubusercontent.com/537352/63842385-bcaf9380-c984-11e9-8a18-d89b16e155de.png) Target type | Target member | Header for assembly name entries...

I've just tried to write a small program listing VMs in a .NET core 3 application. Referencing the VAPI is simply done by referencing the prebuilt DLL files in this...

I've just encountered this issue on SQLite as well. Column in the database is TEXT, as SQLite does not have a date/time/datetime equivalent. Date is stored in ISO8601 format (YYYY-MM-dd),...

As for more thoughts on how to handle this; I don't know if this would be considered "doing too much", but I'd kind of like the idea of member attributes....

> > `(int) ByteSize.FromKibiBytes(128).Bytes` > > `Int32` goes up to 2147483647. That's 2 GiB. That would not be a good candidate to represent file sizes. > > You should not...