Arthur O'Dwyer
Arthur O'Dwyer
Warning: I'm no node.js expert and this code might not even work. Someone should test it before merging it. :) It might also be a good idea to factor out...
Besides TLS 1.3 (#3) and TLS 1.2, it would be nice to have the same style writeup for TLS 1.1 and TLS 1.0. Right at the moment, I'm looking for...
Create a "client-nopass.pem" for use with Python requests, and add it to the download page. Partly addresses #369. The reader will now be alerted to some kind of difference between...
It's quite possible this is covered in Chapter 2 or elsewhere, and I missed it, because I am lazy. If so, apologies! Based on my C++ background, I believe I...
I'm looking for a way to turn off syntax highlighting inside one specific `` element. (They're highlighted as C++ by default, which is great, except for this _one_ block, which...
Hi folks, I'm the author of the `-Wreturn-std-move` diagnostic that triggered issue #847. This issue was marked "fixed" after commit ded84836, which changed the code from CryptoBuffer&& key = GenerateXRandomBytes(keyLengthBytes,...
Then, also in this branch: - rdkafkacpp: Remove an unused non-virtual function. The non-virtual function has the same name as a bunch of virtual functions, and so I'm guessing that...
Returning a `const string` means "My caller can have a copy of this string, but they aren't allowed to modify it" -- for example, they aren't allowed to use move...
No functional change intended; just cleaning up compiler warnings.
TravisCI is currently failing with `inline variables are a C++17 extension`: https://travis-ci.org/github/zenorogue/hyperrogue/jobs/669619228 Could these variables be plain old non-inline variables?