Bob Rundle
Bob Rundle
The PWA example does not work with any client other than localhost because express-http-to-https is used and no certificate has been specified. I cannot figure out how to specify a...
The Atbash Cipher needs additional tests for empty strings... ``` TEST_CASE("encode_empty_string") { REQUIRE("" == atbash::encode("")); } TEST_CASE("decode_empty_string") { REQUIRE("" == atbash::decode("")); } ``` In particular student code can fail encode...
Using ratchet/pawl v0.4.1 and PHP 7.4 Implemented pub/sub client in PHP... ``` public function publish(string $user, string $group, string $message) { $hubUrl = $this->getHubUrl(); $accessToken = $this->getAccessToken($user); $url = $hubUrl.'?access_token='.$accessToken;...