AdventOfCode, C++, Programming

Advent Of Code 2021 – Giant Squid – Puzzle 4

Hello ! I'm Xavier Jouvenot and here is the 4th part of a long series on Advent Of Code 2021. For this new post, we are going to solve the problem from the 4th December 2021, named "Giant Squid". The solution I will propose in C++, but the reasoning can be applied to other languages.… Lire la suite Advent Of Code 2021 – Giant Squid – Puzzle 4

AdventOfCode, C++, Programming

Advent Of Code 2021 – Binary Diagnostic – Puzzle 3

Hello ! I'm Xavier Jouvenot and here is the 3rd part of a long series on Advent Of Code 2021. For this new post, we are going to solve the problem from the 3rd December 2021, named "Binary Diagnostic". The solution I will propose in C++, but the reasoning can be applied to other languages.… Lire la suite Advent Of Code 2021 – Binary Diagnostic – Puzzle 3

AdventOfCode, C++, Programming

Advent Of Code 2021 – Dive! – Puzzle 2

Hello ! I'm Xavier Jouvenot and here is the 2nd part of a long series on Advent Of Code 2021. For this new post, we are going to solve the problem from the 2nd December 2021, named "Dive!". The solution I will propose in C++, but the reasoning can be applied to other languages. Self… Lire la suite Advent Of Code 2021 – Dive! – Puzzle 2

AdventOfCode, C++, Programming

Advent Of Code 2021 – Sonar Sweep – Puzzle 1

Hello ! I'm Xavier Jouvenot and here is the 1st part of a long series on Advent Of Code 2021. For this new post, we are going to solve the problem from the 1th December 2021, named "Sonar Sweep". The solution I will propose in C++, but the reasoning can be applied to other languages.… Lire la suite Advent Of Code 2021 – Sonar Sweep – Puzzle 1

C++, How to, Programming

How to specify your Xcode version on GitHub Actions

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to specify your Xcode version on GitHub Actions. Self promotion: You can find other articles on computer science and programming on my website 😉 Problematic If you have CI/CD processes or if you want to create some for your… Lire la suite How to specify your Xcode version on GitHub Actions

C++, How to, Programming

How to specify your Xcode version on Appveyor

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to specify your Xcode version on Appveyor. Self promotion: You can find other articles on computer science and programming on my website 😉 Problematic If you have CI/CD processes or if you want to create some for your project,… Lire la suite How to specify your Xcode version on Appveyor

C++, How to, Programming

How to specify your Xcode version on Azure Pipelines

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to specify your Xcode version on Azure Pipelines. Self promotion: You can find other articles on computer science and programming on my website 😉 Problematic If you have CI/CD processes or if you want to create some for your… Lire la suite How to specify your Xcode version on Azure Pipelines

How to, Programming

How to switch between 2 versions of Xcode installed on your computer

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to switch between 2 versions of Xcode installed on your computer. Self promotion: You can find other articles on computer science and programming on my website 😉 Problematic Recently, I have been working on several projects using different versions… Lire la suite How to switch between 2 versions of Xcode installed on your computer

How to, Programming

How easily and quickly can you specify arguments for your program in C++

Hello! I'm Xavier Jouvenot and in this small post, we are going to see how easily and quickly can you specify arguments for your program in C++. Self promotion: You can find other articles on my website 😉 Problematic All programs don't have a graphical user interface, and even those whom have one can also… Lire la suite How easily and quickly can you specify arguments for your program in C++

How to, Open Source

How to easily and quickly read/play an audio file in C++

Hello! I'm Xavier Jouvenot and in this small post, we are going to see how to easily and quickly read/play an audio file in C++. Self promotion: You can find other articles on my website 😉 Problematic In C++, there are sadly some operations that require a lot of boilerplate code to do some simple… Lire la suite How to easily and quickly read/play an audio file in C++