Sjoer van der Ploeg

Results 70 comments of Sjoer van der Ploeg

I'm god awful when it comes to booting to Windows to run some tests as I usually just want to get out asap before I get suckered into yet another...

http://downloads.sjoer.org/apitrace/WowClassic.zip There you go, bit late

I have to add I noticed this behavior when trying to figure out why writing a card to my Gen4 would put it in a non-working state. The weird thing...

DirectWrite cards should be writeable, but currently are not.

I was looking into this and tried to strip the Gen1 magic app to make it "Gen2". The Gen2 cards can be written, you can "just" sent a write command...

You can not do this currently, the hardware can. You would have to make changes to the NFC Magic app to sent a write command to block 00, for the...

What if one just wanted to eavesdrop on the communication from the reader/writer and not the card? For example you have a NFC card of which you have all the...

Oke for those struggling with the same problem as I did, you need to add (which I had forgotten): using System.Linq; And then you need to call OrderBy or OrderByDescending...

Funny enough ChatGPT came up with this solution: ``` List results = (from e in _cloudTable.CreateQuery().AsEnumerable() orderby e.propertyName select e).ToList(); ``` Where it notes: ``` Note that this approach will...