Y-Less

Results 384 comments of Y-Less

The library is called "email-validator" - that implies to me that it should assert validity. To me being truly "valid" means exact and correct in every formal variation. The first...

The file I tested it with was 13 bytes: ```pawn bool:test_fseek() { fremove("fseek.ini"); new File:f = fopen("fseek.ini", io_write); if (!f) { print("FAIL: File didn't open\n"); return false; } fwrite(f, "hello...

I believe it was just entirely removed as a feature, rather than changed. However, if you know the commit it happened you could revert it*. Or there is a 3.x...

> it's awful, I know, but that's not because of Pawn or #emit Care to justify that?

Though there are really two questions there: 1. If it is awful, why is it a good example of the things you can do with `#emit`? Surely that would make...

Well yes, that is partially true (sorry, I'm just very used to the "YSI bad" crowd, who simply parrot that because they heard a rumour that there was once a...

I solved this recently, but using a slightly hacky route. The following VS linker flags: ``` /FIXED /DYNAMICBASE:NO /BASE:"0x400000" ``` Will place the code segment in the first 4gb of...

It isn't currently generated anywhere, but that's the result of disabling the `EndsWidth("Info")` checks on marshaling generation. I don't know if that should be considered a bug or not, since...

From my reading of the spec, even as of 1.1.111 the DebugUtils callback is still the only one where an object is passed back, rather than just PODs. Thus you...

Ahh, that explains another thing I was wondering about - why some places used `default(T?)` and others used `null`. It makes sense you'd use the more generic version in generated...