Nathan Phillip Brink

Results 92 comments of Nathan Phillip Brink

Right now I’m slowly working through an implementation of the idP side of the specs as I have time. Hopefully the specs have some allowance for registration-free authentication, I think...

Even for the email link login to work you need state, right? Since it sounds like reregistering shouldn't be too big of a deal, caching the registration token for a...

It’s impossible to safely serialize .net strings as-is in XML. Even XML-1.1, which allows control characters, doesn’t support the null character (`\0`). And [using XML-1.1 isn’t recommended](https://stackoverflow.com/a/6261206/429091). It’s OK to...

The README still says that `boolean` is accepted and [MDN still says that `FormData.set()` will convert to string](https://developer.mozilla.org/en-US/docs/Web/API/FormData/set). But this library still explodes, behaving differently than browsers are documented to....

I think only seeing the name and trusting the sender-set name by default is a security issue. By trying to be too friendly, the default settings make it impossible for...

> I'd hope to see the address and name quickly with not many klicks, but imo everything can only be better to the current scrolling through headers workaround Using the...

Is this related to how Visual Studio only changes CR/LF on lines that are edited instead of the whole file? I like how other editors handle this better, but it...

The ImageSharp license makes it look like it shouldn’t be an issue if it is consumed indirectly. I.e., if your project depends on barcodelib and barcodelib depends on ImageSharp, then...

@Mike-Inasolve What width are you using for the barcode? You need to make sure that your image width is at least 500px or so for a barcode that long. In...

@barnhill is this the original comment’s issue addressed? It sounds like they just need to know to use Code128, so this issue could be closed since their question was answered....