- Propulsé par
- WordPress
-
Mini point sur ma carrière
J’ai quitté volontiers l’industrie du jeu vidéo, ayant perdu toute motivation d’y travailler. L’entreprise dans laquelle j’avais passé plus de quatre ans à essayer de produire des jeux et des applications est sur le point de fermer définitivement. Un chapitre de ma vie est en train de se clore, j’imagine. Avais-je dit que j’étais rentré…
-
[Android] Remove « Couldn’t add widget » from the Overview Screen (Lollipop 5.1)
Enraged After having spent more than a day on the matter, I have finally figured out how to remove the Couldn’t add widget block in the Overview Screen. This is the block which appears in place of the Google search bar on top of the recent apps list after you have disabled the Google app.…
-
Unity3D.tips[2]: Intersection point between two lines in 2D
The code The maths behind To get the point where two lines intersect, we will do some maths. To the mathematicians who will come across this post, I’m truly sorry for the heart attacks or strokes you may experience by reading this post. Ok, let’s take a look on the figure: First, sorry, I was…
-
Unity3D.tips[0]: Avoid naming your
MonoBehaviourmethodsMain()Try to avoid naming your MonoBehaviour methods Main(). These would be triggered between Awake() and Start(). This Main() method supports IEnumerator flavors as much as Awake() and alike! But as useful as it could be, I would not recommend to use it as there is no official documentation entry in the manual. And usually, you…
-
[Windows-10] Why some photos are not appearing in the Photos live tile
Partie française plus bas Symptoms If you are using Windows 10, you may want to pin the Photos live tile to the Start Menu. But some of the images from your pictures folders are not showing in the live tile, or even worse, no picture is displayed on the live tile. You have tried (or…
-
[Linux] Use GRUB from a previously installed Linux in a dual boot setting
When you install a new Linux alongside another one, your computer will likely use the last installed OS’s GRUB instead of the one from the previous install. In my case, I have installed Debian, and a few days later, a Linux Mint on the same disk. But the thing is I prefer the Debian’s GRUB…
-
[Debian] Japanese IME in GNOME 3 desktop
Surprised The japanese IME on Debian, when installed properly, works pretty much similarly to the Windows 7 one… I was quite surprised by the quality of this software piece. Step by step Install those packages from official repositories: ibus and ibus-mozc (along with their dependencies, of course). Launch the Region & Language settings app. In…
-
[Debian] Basics of animated GIF optimization with ImageMagick
I was doing an ingame video capture and I needed to have it in a GIF format. A few frames of the animation could be optimized as there were sometimes still images. So if I wanted to remove those unnecessary frames (while keeping the correct duration, of course), one can simply use ImageMagick. How to…
-
[Debian] Create a QRCode for a vCard file
Didactic I am writing a little tutorial here for creating a QRCode for a vCard file. As I don’t use it that much, it feels like I need a memo for it. Preparation We will use a vCard file named test.vcf which contains the following: BEGIN:VCARD VERSION:2.1 N:Family Name;First Name;;; FN:First Name Family Name TITLE:Your…