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
Catégorie : 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
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
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 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 setup Chocolatey test environment on Ubuntu 21.10 ?
Hello ! I'm Xavier Jouvenot and in this post, we are going to see to setup Chocolatey test environment on Ubuntu 21.10. Self promotion: You can find other articles on my website 😉 Let's dive directly in the solution ! Pre-requirements I order to be able to run the Chocolatey test environment, you need to… Lire la suite How to setup Chocolatey test environment on Ubuntu 21.10 ?
How to add a program to the system path in a Chocolatey package
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to add a program to the system path in a Chocolatey package. Self promotion: You can find other articles on my website 😉 Problematic When creating a Chocolatey package, you may end up installing a program either in a… Lire la suite How to add a program to the system path in a Chocolatey package
How to exclude an executable from getting shimming in a Chocolatey package
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to exclude an executable from getting shimming in a Chocolatey package. Self promotion: You can find other articles on my website 😉 Problematic When creating or interacting with Chocolatey packages, you may end up in a situation where the… Lire la suite How to exclude an executable from getting shimming in a Chocolatey package
How to handle user variable in a shell/bash script
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to handle user variable in a shell/bash script. Self promotion: You can find other articles on my website 😉 Problematic When creating some shell scripts, you may want to have some parameters accessible to the user, so that he… Lire la suite How to handle user variable in a shell/bash script
How to handle user variable in a Makefile
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to handle user variable in a Makefile. Self promotion: You can find other articles on my website 😉 Problematic When creating some make commands in your Makefile, you may want to have some parameters accessible to the user, so… Lire la suite How to handle user variable in a Makefile