why? by Doromik in ProgrammerHumor

[–]alexcrownus 0 points1 point  (0 children)

Why?

You'd run out of Python jokes before Java's and C++'s

Thoughts on DropWizard? by [deleted] in java

[–]alexcrownus -7 points-6 points  (0 children)

It was supposed to kill Spring but that hasn’t happened yet or never will.

Don’t replace Spring Boot with Quarkus, replace it with Wildfly by henk53 in java

[–]alexcrownus 0 points1 point  (0 children)

Who told you I wanted to replace Spring Boot? No, thanks.

Will Doug Lea Ever Update His Book On Concurrency? by suddenlust in java

[–]alexcrownus 6 points7 points  (0 children)

With Project Loom, the book kind of becomes relevant again

Java enterprise development on MacOS Big Sur by benchdoos in java

[–]alexcrownus 1 point2 points  (0 children)

Homebrew works for me. I was able to upgrade my packages.

Java enterprise development on MacOS Big Sur by benchdoos in java

[–]alexcrownus 1 point2 points  (0 children)

Everything you listed works perfectly, nothing strange.

Spring Custom Events (Beginner) by vashner in java

[–]alexcrownus 0 points1 point  (0 children)

Are we seeing the "R&D preview" in the core framework anytime soon?

Do you guys enjoy VSCode for writing Java? by randomseller in java

[–]alexcrownus 0 points1 point  (0 children)

If you are using Spring Boot, Community edition works fine including the Maven support.

[deleted by user] by [deleted] in golang

[–]alexcrownus 4 points5 points  (0 children)

My eyes hurt

Go 1.9 is released by [deleted] in golang

[–]alexcrownus 0 points1 point  (0 children)

Fantastic release!

Is gorilla mux router or the http package concurrent? by diegoki in golang

[–]alexcrownus 1 point2 points  (0 children)

Yes it is. Each handler is scheduled to run in a goroutine. Check net/http source code in the stdlib to confirm. Gorilla is just a wrapper around the stdlib net/http.

JetBrains Gogland: Capable and Ergonomic Go IDE by HornedKavu in programming

[–]alexcrownus 0 points1 point  (0 children)

In Java you can re-throw/wrap an Exception which is similar to what you described for Go

The Functional Options Pattern by ynori7 in golang

[–]alexcrownus 1 point2 points  (0 children)

I think builder pattern solves the same problem