Tag: C++
-
Fun with gRPC and C++
A dive into asynchronous servers and clients using C++ and gRPC in 2023 - 2024
-
Part 11: Using QT's native gRPC support
Here we implement a client using QT 6.8 with an interactive QML UI!
-
Part 10: Exploring how to implement the client using gRPC async callbacks
Here we implement all four operations as actual - usable - methods with event-callbacks.
-
Part 9: Exploring how to implement the server using gRPC async callbacks
Here we implement all four operations using the newer - and much nicer - callback interface.
-
Part 11: Using QT's native gRPC support
-
A smart asynchronous object-cache in C++
A generic cache in C++ that only fetch an item once, even if there are many simultaneous requests for the data.
Read on... -
Version 0.90 of restc-cpp with important new features
Restc-cpp is a REST client library for C++ projects.
Read on... -
The great mystery on how to make durable, asynchronous functions for asio.
Many C++ developers seems confused about the secret sauce of asynchronous completions - or composed operations - in Boost.asio.
Read on... -
Deploying distcc in a kubernetes cluster to transform it into a big, fast build-machine.
For C++ developers, more cores to build on means faster builds. If your project is big, more cores can make a significant boost. If you have a local k8 cluster with spare CPU, it's amazingly simple to turn it into a build-machine.
Read on... -
Some words about a simple experiment with QT
What does it take to make a simple Qt/QML application and deploy it on iOS, Android, macos, Linux, Windows? Let's find out!
Read on... -
How to make std::shared_ptr<> objects singleton instances
How do you ensure that, for example, a database wrapper, only hands out one instance of any given data object?
Read on... -
Serializing directly between C++ objects and Json files
C++ is a popular Object-oriented language. Json is a popular format for storage of Objects. Why is it so hard to make those two things play ball?
Read on... -
The second beta of restc-cpp is released
Restc-cpp is a REST client library for C++ projects.
Read on... -
Getting QSqlRecord right
I wasted quite some hours figuring out how to correctly insert new records in a QSqlTableModel derived class.
Read on...