https://blog.davidecoppola.com/2016/10/how-to-create-an-application-with-qt-and-cpp/
Tags: #programming #Cpp
Tags: #programming #Cpp
Bits of Bytes
How to create an application with Qt and C++
This tutorial is an introduction to Qt programming and will teach you how to create an application with Qt and C++. Full project and source code is provided
https://blog.davidecoppola.com/2016/11/howto-embed-database-in-application-with-sqlite-and-qt/
Tags: #programming #Cpp #database
Tags: #programming #Cpp #database
Bits of Bytes
How to embed a database in your application with SQLite and Qt
A tutorial that will show you how to use SQLite and Qt SQL to have a relational database in your application. It covers creation, insertion and query.
https://blog.davidecoppola.com/2016/11/qt-network-and-json-example-simple-hacker-news-reader/
Tags: #programming #Cpp
Tags: #programming #Cpp
Bits of Bytes
Qt Network and JSON example: a simple Hacker News reader
This tutorial will show you how to use Qt Network and JSON to create a simple Hacker News reader. Source code and project file are available on GitHub.
https://gameprogrammingpatterns.com/data-locality.html
An interesting article which aims to "accelerate memory access by arranging data to take advantage of CPU caching."
Tags: #programming #Cpp #gamedev #optimization
An interesting article which aims to "accelerate memory access by arranging data to take advantage of CPU caching."
Tags: #programming #Cpp #gamedev #optimization
https://preshing.com/20170612/can-reordering-of-release-acquire-operations-introduce-deadlock/
Tags: #programming #Cpp
Tags: #programming #Cpp
Preshing
Can Reordering of Release/Acquire Operations Introduce Deadlock?
I wasn’t planning to write about lock-free programming again, but a commenter named Mike recently asked an interesting question on my Acquire and Release Semantics post from …