SNCF : Encore des problèmes de support, mais la concurrence arrive !

Ce blog n’est normalement pas destiné a accueillir ce genre de posts, mais ayant un peu de visibilité, j’en profite pour partager mon désarroi et peut-être aider des personnes qui comme moi, n’ont reçu absolument aucune réponse lors d’une demande de support. Un peu de contexte Devant faire un trajet de Nancy à une petit ...

Work with Jobs & Queues with Lumen ^5.7

I recently tackled down a subject that is intended to work out-of-the-box : I’m speaking about Queues & Jobs with Laravel (more specifically with LUMEN framework) So, for those who don’t know (but I guess if you are reading this you already know) : Lumen is a micro-framework based on Laravel. Exactly the same spirit ...

Create a JSON Renderer for IntelliJ Debugger

Hay ! Since I’m writing a longer article and as I’m damn slow to write it, I wanted to go for a fast, short, milestone article about something I made recently. As I wanted to craft my JSON data payload to send to an API for test purposes, I had multiple big objects coming from ...

Un retour sur Docker

Bonjour …. ah … y a plus personne de vivant ici ! Ca fait plusieurs années que je ne me suis pas dérouillé les phalanges sur un article, mais il n’est jamais trop tard pour s y remettre. Allons-y! Un retour sur Docker Après avoir utilisé, dans un début d’environnement d’intégration, l’outil Docker, comme plateforme ...

Gradle Build Error : com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536

On some device configuration, when running the Gradle build, it can happens that it fails with the following error : com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536 About my case, it happened to me when trying to build an app using Google Play Services library. And I solved the issue after a few attempts, ...

Présentation des méthodes de résolution de problèmes complexes

Dans certains domaines, ou devrais-je dire dans presque tous les domaines, on est parfois amené à vouloir trouver des théorèmes, ou des solutions, en partant d’une base de connaissances. Cette base de connaissance, ces choses prouvées, s’appelle dans le domaine la base de faits. Exemple en médecine, on connaît les symptômes d’un patient, et on ...

Tips & Tricks with ElasticSearch

It’s been a while now since I’m using sometimes the Lucene’s child : the powerful ElasticSearch ! A NoSQL collection, which is mainly used for it’s historical & analysis capabilities. I’ve learnt some things, but I also need to write down these things, or I’m not going to remember it in a couple of months without ...

Extract Android ROM for reverse-engineering 4

  Hi mates 🙂 I will list the manufacturer from which I’ve managed to extract ROM so far, and the methodology to do it. Then in the last part, if you doesn’t have readable sources, I ll tell you how to get .java files (it’s not always 100% of the time the same code as the original sources, ...

YAML file : mapping values to Object list with Spring Boot 9

I struggled a bit with a thing that could be so simple. I had a set of rules that I wanted to map as an Object list and documentations was not very clear. So I’ve decided to put my 2 cents, and detail the steps to make it works properly. To be able to do ...

Apache HttpClient Component with Java

I’ll quickly note here how to embbed a certificate in a store, to be used by the Apache HttpClient component in Java. This can be useful if you want to call a Web Service within your Java code, via HTTPS requests and you only have (for dev / test purposes) a self-signed certificate. It will in ...