How to, Open Source, Programming

How to fix undefined _futimens symbol in LLVM on OSX

Hello ! I'm Xavier Jouvenot and in this blog post, we are going to see how to correctly fix an error with undefined "_futimens" symbol in LLVM on OSX. Self promotion: You can find other articles on my website Problematic When integrating the latest version of LLVM with your OSX project, you may have encountered… Lire la suite How to fix undefined _futimens symbol in LLVM on OSX

Code Craft

How to deal with errors ? – When your program face the hard reality of the world !

Hi dear reader, I'm Xavier Jouvenot and this is the sixth article about Code Craft, by Pete Goodliffe. If you want, you can look at the previous article about 'How to write comments', and you can find book here. Why should I even care about errors ? For a lot of programmers, as long as… Lire la suite How to deal with errors ? – When your program face the hard reality of the world !

How to, TipsAndTricks

How to use alternative operators in C++ with Visual Studio

I'm Xavier Jouvenot and in this small post, we are going to see how to use alternative operators in C++ with Visual Studio. Self promotion: You can find other articles on my website 😉 Problematic In C++, as you may already know, there are primary operators available to us since the beginning of C++, as… Lire la suite How to use alternative operators in C++ with Visual Studio

How to, TipsAndTricks

How to get the profile picture of a GitHub account

Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to get the profile picture of a GitHub account. Self promotion: You can find other articles on my website 😉 Small Backstory When following a GitHub Learning Lab course, I ended up creating a portfolio using Markdown. During this… Lire la suite How to get the profile picture of a GitHub account

How to, TipsAndTricks

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

Android Studio, How to, TipsAndTricks

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

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

AdventOfCode, How to

Quick Tip – How to bind a function to a button ?

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to bind a function to a button. Self promotion: You can find other articles on Android development on my website 😉 Handling your buttons click in the activity There are two ways to handle your buttons click in your… Lire la suite Quick Tip – How to bind a function to a button ?

Android Studio, How to

Quick Tip – How to specify a variable element in a resource string ?

Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to specify a variable element in a resource string. Self promotion: You can find other articles on Android development on my website 😉 Strings resources When crafting you application, you may have encountered some problems when placing your string… Lire la suite Quick Tip – How to specify a variable element in a resource string ?