Julien Kronegg
Julien Kronegg
Detected zoom values are rounded with two digits: ``` ..., 1, 1.09, 1.2, 1.3, ... ``` It expected that the detected values match the Firefox zoom levels defined by the...
When setting the zoom value to 105% or 110% under MSIE9, detect-zoom will give a value of 1.04... and 1.09... respectively. The expected values are 1.05 and 1.1 respectively. In...
Replaced `String` concatenations by `StringBuilder`. This code is 2.5 faster than the original one (using JMH Benchmark on padding left/right/center of an empty String with 50 "-"). Solves #29
# Observed behavior In my project, I generate Markdown tables with this library. Using the IntelliJ profiler, I observed that the library takes about 9% of the total time to...
## Description I have two intro starting points: one on a `` and one on a `` (both having an `id` property and containing elements with `data-intro` properties). I want...
## Description I have several tags with `data-intro` properties and I want to start the intro in the middle. There is a minimalistic example which reproduce this behavior: I'm a...
### 🤔 What's changed? I reduced the usage of the Mockito framework. This is a first pass, focused on the simple cases (typically: replacing the mock+when constructs with stub classes)....
### 🤔 What's the problem you've observed? Mockito has a impact on the unit test execution time (seen using IntelliJ Profiler flame graph): | project | test duration [s] |...
### 👓 What did you see? Let's say I have a plugin which process `Envelope` and may generate exceptions. Depending on the `Envelope` content, the exceptions are rethrowed or swallowed...