Kamil Gregorczyk
Kamil Gregorczyk
Why does it sound too specific? * It would be empty as a default * If devs want to have something always pushed then they could define it in their...
Ah I get it, you want to have something like a preprocessor for a list of files, ok that is better. something like : ``` CLOUDFLARE_PUSH_FILES_PREPROCESSOR = lambda files: files...
Ok, should I or should you do it?
Just do `kubectl proxy --www ./gcp-live-k8s-visualizer --accept-hosts="^.*$" --address="0.0.0.0" --port=9999 ` and then you can call it by http://MASTER_IP:9999/static/ This issue can be closed as it's related to the kubectl proxy...
also happening with colab, I think the project's dead though, no commit in last 9 months?
Of course, but List.of uses immutable implementation of a list
Since JDK9 there are built in immutable collections with nice constructors so there's no need to use guava's ones
When you create a class that's immutable you call it SomethingSomething not ImmutableSomethingSomething. JDK finally has immutable collections with nice way of constructing them, just because some ppl prefer to...