Boris Aranovič

Results 17 comments of Boris Aranovič

I still get ```java new Semver("2", SemverType.LOOSE).isEqualTo("2.0") // false ```

I worked around it by adding a helper function that converts everything `.toStrict()`, so ```java private Semver version(String versionString) { return new Semver(versionString, SemverType.LOOSE).toStrict(); } ////// version("2").isEqualTo(version("2.0")) // true ```...

This probably should be a solution for all 3 battery report types, not only acpi. Would Max value make sense if calculation of average isn't consistent between the different utilities?

I have a similar issue with our internal network application. There's a bunch of JS content loading, and some of the modules have the word "analytics" in them because they...

I should have several sample outputs I collected while trying to debug some of these issues. I'll try to find them later and post here.

Is this feature still not in?

> Take a look at https://github.com/starcraftman/zsh-git-prompt, @nomaed I actually got to work today and took a look at my configuration there, and I saw that it's exactly what I was...