Category "c++"

Boost.beast : how to return json response only

code : https://gist.github.com/Naseefabu/173c928603e564879683ccdf10d9d0f8 When i run this and print the response to the console: Sending GET /api/v3/time HTTP/1

Getting index of unique elements in a vector

Is there any STL/Boost function in C++ that allows me to find the indices of all unique elements in a vector? I have seen many solutons to find unique elements,

Raytracing program fails to detect intersections in c++

I am working on a simple raytracer in c++. I am currently implementing an intersection function but have encountered some issues. For some reason, the collision

Unique_ptr in a class

The Human class turned out to be non-copied, since it contains a field of type unique_ptr, for which the copy constructor and the copying assignment operator ha

Segmentation Fault - unordered_map(tarjan's algorithm)

I have implemented Tarjan's algorithm to find strongly connected component in a graph and getting Segmentation fault for some large input. #include <iostream

why do i getting boost.URL linking error?

This is my project : https://github.com/Naseefabu/HFTBOT/blob/master/src/main.cpp When i try to build it, Error : https://gist.github.com/Naseefabu/5a114956f39b

Should you always put join() after launching a thread?

I wonder if there is any advantage putting join() not immediately after launching a thread? std::thread t(func); // some code ... t.join(); does it give you

A basic C++ recursion question I can't wrap my head around

I am learning the basics of CPP programming. I came across this basic recursion question which I'm unable to understand. The output is 1 2 3 4 5 but I don't und

Remove row from the model

There is a client (company). The client has contacts. You can link any number of contacts to a specific client. Let's say you open the client you need. Then you

C++ unpack variadic template arguments with the next function returns nothing [duplicate]

I'm trying to expand arguments to a variadic function. Code below works perfectly fine template<typename T> int printMy (const T& f)

Finding bar graph showing the percentages of two different entities in c programming using graphics.h header file from user input

I want to implement this code by finding user input data of male and female percentage of a school. But I found some difficulties finding the calculation of mal

How to use grpc c++ ClientAsyncReader<Message> for server side streams

I am using a very simple proto where the Message contains only 1 string field. Like so: service LongLivedConnection { // Starts a grpc connection rpc Conn

How to create a response from a file that has CJK filename

I'm trying to load a file to be a HTTP response with Boost.Beast, but it doesn't work on Windows. My code is similar to this: typedef boost::beast::http::respon

What does std::filesystem::is_regular_file(path) mean on Windows?

About std::filesystem::is_regular_file(path), cppreference.com says: Checks if the given file status or path corresponds to a regular file […] Equivalen

Get temp path with file name

I want to get path to file like this > %ENV%/%FILE_NAME%.docx But c++ doesn't make sense at all and nothing works.. I would use std::string but it's not comp

OpenCL: Is 64 bit global_id() not supported?

I'm an OpenCL newbie and I cannot return 64 bit values from the compiled kernel. What do I wrong? I have an Intel(R) HD Graphics 520 graphics card and I wanted

OpenCL: Is 64 bit global_id() not supported?

I'm an OpenCL newbie and I cannot return 64 bit values from the compiled kernel. What do I wrong? I have an Intel(R) HD Graphics 520 graphics card and I wanted

OpenCL: Is 64 bit global_id() not supported?

I'm an OpenCL newbie and I cannot return 64 bit values from the compiled kernel. What do I wrong? I have an Intel(R) HD Graphics 520 graphics card and I wanted

OpenCL: Is 64 bit global_id() not supported?

I'm an OpenCL newbie and I cannot return 64 bit values from the compiled kernel. What do I wrong? I have an Intel(R) HD Graphics 520 graphics card and I wanted

OpenCL: Is 64 bit global_id() not supported?

I'm an OpenCL newbie and I cannot return 64 bit values from the compiled kernel. What do I wrong? I have an Intel(R) HD Graphics 520 graphics card and I wanted