H. S. Teoh

Results 42 comments of H. S. Teoh

Just a side-note: in my current code I've managed to find an easy workaround for now: since the code hasn't actually reached the point where I need to integrate other...

Fixed. I totally missed that because of the evilness of `__traits(compiles)` in `registerMethods` that silently ignored the method that throws the dbus error. :-( So the program still compiled but...

It's good to know the D port at least avoids certain common vulnerabilities often found in C/C++ code. :-P OTOH, I would feel a little safer if there was actually...

This is very nice, in that it frees us from having to rely on potentially poorly-implemented `mkstemp` functions in the OS / standard C library. However, it warrants *very* close...

Oh, one potential thing: this function ought to be thread-safe. I believe it is (the static RNG seed should be in TLS, right?), but someone should review it carefully just...

Yeah, if nobody is actively working on `std.data.json`, then we shouldn't be advertising it in the Phobos docs.

I'm tempted to say that `find` should return `auto`. This PR is a living proof of why explicit return types is a bad idea in generic library code. Had we...

ping @andralex This is a potentially breaking change, need your review & approval.