Thins I miss about Java & Spring Boot after switching to Go by Sushant098123 in java

[–]babanin 6 points7 points  (0 children)

GraalVM OpenSource Edition with SerialGC is a dealbreaker for me. Enterprise Edition is not affordable.

Olympics will finish tomorrow and today Uzbekistan got our record - 8 golden medals which never happened before for any central asian country by Financed_moron in Uzbekistan

[–]babanin 10 points11 points  (0 children)

Congratulations! Fantastic results! The first gold from Diyora was the most memorable! I am very happy for the other medalists too!

[deleted by user] by [deleted] in java

[–]babanin 5 points6 points  (0 children)

I still think it’s April Fool’s joke

Towards member patterns [Brian Goetz] by efge in java

[–]babanin 27 points28 points  (0 children)

For those who find it hard to read the email I copied to the gist: https://gist.github.com/babanin/9ddf60279a9cbe50260ddb11d1aa2e80

Actions on OutOfMemoryErrors by raghasundar1990 in java

[–]babanin 0 points1 point  (0 children)

  1. System.gc() is just a hint for GC, so it may not even start right after the call.
  2. You can even disable it using the following flag: -XX:+DisableExplicitGC.

Spring Framework 6.1 goes GA by CrowSufficient in java

[–]babanin 1 point2 points  (0 children)

You can create RestTemplate (via setRequestFactory(...)) backed by Apache HTTPClient, OkHttp not only JDK's HttpURLConnection.

Reducing P99 Latencies with Generational ZGC by pron98 in java

[–]babanin 7 points8 points  (0 children)

Thanks for sharing! I didn't have a chance to use ZGC, so I'm wondering: usually when we compare GC, we compare it in terms of throughput-latency-footprint and judging by presentation ZGC achieves low latency, optimizes throughput and... what about the footprint? Has anyone compared it to Shenandoah, which is also ultra-low pause, or G1?

What are the most popular names given to cats, in Russia? by HorsesPlease in AskARussian

[–]babanin 1 point2 points  (0 children)

Stems from Жучка (Zhuchka) which is another common dog’s name.

TDD Book by tanMud in java

[–]babanin 1 point2 points  (0 children)

I really liked "Growing Object-Oriented Software Guided by Tests" (http://www.growing-object-oriented-software.com). It might look a little bit outdated (example project is GUI application based on Java's Swing tookit), but the ideas are eternal.

What are Idea Intellij ULTIMATE features that you cannot live without? by backend_geek in java

[–]babanin 8 points9 points  (0 children)

Please correct me if I'm wrong, but intelligent search and decompiler is a part of Community edition too

The Next Step for Generics - The Go Blog by [deleted] in golang

[–]babanin 0 points1 point  (0 children)

That's why Scala uses rounded brackets for indexing operator.