Koziołek
Koziołek
An example of my blog. Feed URL contains `?cat=43` → https://github.com/jvm-bloggers/jvm-bloggers/blob/master/src/main/resources/blogs/bloggers.json#L149 When open it in browser I have: ```xml Programowanie – KoziołekWeb https://koziolekweb.pl Sięgam tam gdzie wzrok nie sięga, a...
I run container via `zoom-us-wrapper zoom` and in logs I see ``` Adding user `zoom' to group `sudo' ... │ │ Adding user zoom to group sudo │ │ Done....
Based on contrast color calculator, I change `--accent-color` variable to achieve passing minimal requirements for WCAG AAA for normal text and WCAG AA for graphical objects. For combination `--accent-color` on...
My code is simple: ``` $base64.encode($scope.loginText) ``` Now if I put ö as `loginText` then I get `9g==` that is invalid. As a reference, and valid, encoding I use java:...
All meta tags in template are void tags and should be open – end with `>` not `/>`. This change makes meta tags valid in w3c validator.
First read [this one](https://github.com/vavr-io/vavr/issues/2325). Now, let's discuss the introduction of `CheckedConsumerN` and `ConsumerN`. ### Motivation There are some tickets that touch `peek`/`tap` functionality for: * Tuples – https://github.com/vavr-io/vavr/issues/2723 * Functions...
This PR fixed a #111 problem was how we handled this party: ```java public String url(boolean isHttps) { String mergedIP = ipAddress().replaceAll("\\.", ""); char[] domainChars = mergedIP.toCharArray(); for (int i...
In this commit » https://github.com/unitsofmeasurement/si-units/commit/d80e5327538ff3f04c0fe0f309af648b40e77ad8#diff-4dbbaea2c4194838f1b35aa2589d097629edee16ec8308e05608938308d87d49 you drop a lot of stuff from `NonSI` class. One of removed item was `KNOT`. Some of the removed items were restored in next commits,...