Home
Sandor Dargo's Blog
Cancel

User-defined literals in C++

Last time we discussed strong types and in particular, strongly typed containers. We introduced the idea through a constructor that takes two integers and two boolean values and we saw how easy it ...

Strong types for containers

Once again we were practising Object Calisthenics during our weekly coding dojo. If you don’t know what it is about, I’d advise you to check out the rules. You might not want to apply all of them f...

DevReads to fill up your reading list

I’ve been running my personal blog since the end of 2016 and starting from mid-2017, I’ve been posting at least one article almost every week. My blog has not and does not have one single topic, I ...

Cmake Project Creator at your disposal

After Daily C++ Interview that I introduced in early September, let me share with you another project I have been working on for in my learning time for the last couple of months. Cmake Project Cre...

How to share data in Jenkins?

I’ve spent quite some time during the last two months on Jenkins pipelines and I had to solve an interesting problem that I’m going to share with you in this article. We perform regular source co...

Personality Isn't Permanent by Benjamin Hardy

Growth is not linear. Sometimes it seems like you grow little by little, every day a bit. Sometimes you hit plateaus and it feels like you can’t really achieve the levels you wanted. While other ti...

Happy International Programmers' Day

Dear Fellow Programmers, If there is one day in the year when we can stop a bit and reflect on the importance of our jobs, this is it. I strongly believe that all jobs, all work is valuable. I ne...

The big STL Algorithms tutorial: modifying sequence operations - how to get distinct elements

In this next part of the big STL algorithm tutorial, we will discover the 2 modifying sequence algorithms that will help you get unique elements of a container: unique unique_copy Let’s ge...

Let me introduce Daily Cpp Interview

I’ve got something to share. Something I’ve been building for the last few weeks has gone live today: Daily Cpp Interview. What is Daily Cpp Interview about? It’s extremely simple. You subscribe...

Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library by Scott Meyers

I have learned, written and spoken a lot about the Standard Template Library during the course of the last years. My sources have been mostly websites such as cppreference.com, cplusplus.com, blogs...