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++
Étiquette : TodayILearned
How to factorize and create reusable processes with Azure Pipelines
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to factorize and create reusable processes with Azure Pipelines. Self promotion: You can find other articles on my website 😉 Problematic When creating some processes on Azure Pipelines, you may want to simplify it like you do with code… Lire la suite How to factorize and create reusable processes with Azure Pipelines
How to update the same line in the Terminal
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to update the same line in the Terminal. Self promotion: You can find other articles on my website 😉 Problematic When displaying information in the terminal with your program, you can easily end up spamming it with so much… Lire la suite How to update the same line in the Terminal
How to factorize layer code in Android development
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to factorize layer code in Android development. Self promotion: You can find other articles on my website 😉 Problematic When developing an application, you may have some Activities, looking a lot alike, and this can, and will lead to… Lire la suite How to factorize layer code in Android development
Chocolatey and Gist
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to link a gist to a chocolatey package maintainer repository. Self promotion: You can find other articles on my website 😉 Introduction I assume that if you click to see this post, you already know what [Chocolatey] and [Gist]… Lire la suite Chocolatey and Gist
Quick Tip – How to find the difference between two numbers
Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to find the difference between two numbers. Self promotion: You can find other articles on Android development on my website 😉 Subtracting number isn't enough ? First, let's defines precisely what a difference is and why a subtraction isn't… Lire la suite Quick Tip – How to find the difference between two numbers
Quick Tip – How to set the visibility of a button
Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to set the visibility of a button. Self promotion: You can find other articles on Android development on my website 😉 Statically To specify the visibility of a Button, there are several solutions And the first one we are… Lire la suite Quick Tip – How to set the visibility of a button
How to make a windows installer run silently
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to make a windows installer run silently. Self promotion: You can find other articles on my website 😉 Options for installers ? 😮 Until I look on the internet about this subject (in order to create chocolatey packages), it… Lire la suite How to make a windows installer run silently
Quick Tip – How to display the history of a file using git ?
Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to display the history of a file using git. Self promotion: You can find other articles on Android development on my website 😉 Git log You may be familiar or not with this the command git log which can… Lire la suite Quick Tip – How to display the history of a file using git ?
Quick Tip – How to convert a Java List to a Java String
Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to convert a Java List<Integer> to a Java String. Self promotion: You can find other articles on Android development on my website 😉 Solution For the people who only want the solution, to quickly copy-paste it in there code,… Lire la suite Quick Tip – How to convert a Java List to a Java String