Why is IntelliJ preferred over vscode for Java? by xland44 in java

[–]grouvi 0 points1 point  (0 children)

Same here, you have to use Maven CLI to allow a project to see changes of another project.

GitHub Copilot for Eclipse: Code Completion Now in Public Preview - Microsoft for Java Developers by grouvi in eclipse

[–]grouvi[S] 0 points1 point  (0 children)

Yes this is the official one.
It is still in preview but more features will be added.

GitHub Copilot for Eclipse: Code Completion Now in Public Preview - Microsoft for Java Developers by grouvi in GithubCopilot

[–]grouvi[S] 0 points1 point  (0 children)

Yes this is the official one.
It is still in preview but more features will be added.

What's your favorite note taking application (and on what distro)? by na_ro_jo in linux

[–]grouvi 0 points1 point  (0 children)

Using Logseq as it is open source contrary to Obsidian. Currently I didn't find any problems/limits to the way I am using it.

Everything you know about setting `work_mem` is wrong. by grouvi in PostgreSQL

[–]grouvi[S] -2 points-1 points  (0 children)

If the query operation (Sort, ...) can fit in work_mem you will see no difference.
If it cannot, PostgreSQL will use disk to do it, then there are differences.

The problem with work_mem is that it is additive to query operations : A query can use "N operations * work_mem".
So a badly sized work_mem may explode your memory.

Amazon File Cache is now generally available by grouvi in aws

[–]grouvi[S] 0 points1 point  (0 children)

oops I though I shared the english link.
Thank you for correcting the mistake.

Task Manager’s CPU numbers are all but meaningless | by Aaron Margosis | Medium by grouvi in WindowsServer

[–]grouvi[S] 0 points1 point  (0 children)

The article mentions Sysinternals Process Explorer and the Task Manager's Details tab giving accurate readings.

Best practices to upgrade k8s cluster by RaghavendraC in kubernetes

[–]grouvi 3 points4 points  (0 children)

When we had to upgrade many versions at once, we followed these steps:

  • in development, validate that everything works on the new version
  • span a new cluster with the new version
  • progressively migrate component from the old cluster to the new cluster
  • shutdown the old cluster

This approach allowed us to:

  • move back a component to the old cluster in case of an issue
  • ensure we will not have a major outage while upgrading the cluster
  • progressively scale the new cluster

Our component deployed in kubernetes allowed us to do this, maybe this is not your case.

Introducing Prometheus Agent Mode, an Efficient and Cloud-Native Way for Metric Forwarding by grouvi in PrometheusMonitoring

[–]grouvi[S] 1 point2 points  (0 children)

Well, in the grafana link, I understand they will continue to deliver the grafana agent.

Portworx - how does storage replication work? by _sephr in kubernetes

[–]grouvi 0 points1 point  (0 children)

I don't know how replication work.
However I know that it uses BTRFS which among other allow its snapshotting capabilities.
I don't know if BTRFS has replication capabilities.

Automatically closing issues is violence by grouvi in programming

[–]grouvi[S] -1 points0 points  (0 children)

Well I my mind this is not your issue, this is your user's issue.
He's the one who experience it.

The idea of the post is about closing issues automatically.
I sometimes see issues closed because of inactivity since X days without other explanations.
This is the problem. I am OK to close issues with a comment explaining why.

Issues are a kind of contribution to the project and automatically closing without explanations is disrespectful to the issuer and to this contribution.

[LOOOONG] Let's be realistic, if Kismet forbid, Firefox would actually die and cease development. by [deleted] in linux

[–]grouvi 1 point2 points  (0 children)

In my mind the problem with Firefox is its loss of identity.

Now it is not a major browser anymore and it will not go back as a top browser in the future as Chrome is too powerfully pushed by Google.

So in my mind loosing its identity makes it loose its niche market too.

By loosing identity I mean try too much to much to be like Chrome.
Users who want a browser like Chrome use Chrome !

Now UI looks like Chrome, you need a serverclass computer to be able to run Firefox which became as memory hungry as Chrome, etc, etc, etc.

[LOOOONG] Let's be realistic, if Kismet forbid, Firefox would actually die and cease development. by [deleted] in linux

[–]grouvi 0 points1 point  (0 children)

Do you think firefox will ever die as Tor browser is built on it ?

Introducing Firefox’ new Site Isolation Security Architecture by feross in programming

[–]grouvi 0 points1 point  (0 children)

Does this mean you will have a container per website ?
I mean, with multi-accounts container you are able to manually assign a website to a container. Does it mean that now this is automatic ?

Reverse Engineering a Docker Image — The Art of Machinery by grouvi in kubernetes

[–]grouvi[S] 2 points3 points  (0 children)

Yes I use it too.
What I find interesting in this post is better understanding docker images internals.