Josh Lospinoso

Results 10 issues of Josh Lospinoso

Hello, This simple program yields a compiler error: ```cpp #include void foo(origin::Number x) { } int main() { foo(10); } ``` The error is the following: ``` /home/jalospinoso/concepts/main.cpp: In function...

Adds parenthesis to Ordered requirement.

enhancement
Hacktoberfest

From this issue: https://github.com/JLospinoso/beamgun/issues/7

enhancement
Hacktoberfest

The success of this option is mixed, and for now it is better to just lock the workstation.

enhancement
Hacktoberfest

Sample: ```cpp #include "Windows.h" #include #include int main() { const GUID KEYBOARD_CLASS_GUID = { 0x4D36E96B, 0xE325, 0x11CE, { 0xBF, 0xC1, 0x08, 0x00, 0x2B, 0xE1, 0x03, 0x18 } }; auto devs...

enhancement
Hacktoberfest

**Describe the bug** `README` contains several errors in the microbenchmark example. 1. Mismatch between `fibonacci` and `Fibonacci`. Will not compile. 2. All three assertions fail. Here's an update: ``` #include...

http://blog.fourthbit.com/2014/12/23/traffic-analysis-of-an-ssl-slash-tls-session

enhancement
good first issue

May have something to do with the `read_some`/`write_some` approach; need to have a longer timeout, or more involved error handling? Lines 359-381 of `Connection.cpp`: ``` void Connection::service_client() { socket.async_read_some(buffer(data), [self=this->shared_from_this()](err...

bug
enhancement
help wanted

Lines 170-174, `DnsRequest.h`: ``` boost::system::error_code ec; ssl_context.set_default_verify_paths(ec); if(ec) throw std::runtime_error{ "Failed to obtain SSL context."}; //TODO: Fails in Docker container? //ssl_context.set_verify_mode(boost::asio::ssl::verify_peer | boost::asio::ssl::verify_fail_if_no_peer_cert); ``` As an alternative, we could simply...

enhancement
help wanted