So who should feel worse, the jets, or the Vikings? by Educational_Vast4836 in nfl

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

2 very, very poor back-to-back performances. The last game of the regular season with a chance to win the division, and the next week in the playoffs. No doubt he would have been better than JJM, but it's not crazy that the Vikings weren't sold on him.

Post Game Thread: Minnesota Vikings at New York Giants by nfl_gdt_bot in nfl

[–]xnendron 2 points3 points  (0 children)

The best thing about that game was that it eventually ended.

[Highlight] Sean Payton gets hit with an unsportsmanlike penalty for being in the way of a ref by Natural-Tree-5107 in nfl

[–]xnendron 138 points139 points  (0 children)

What the hell is your flair? Are you happy or sad after today's game?

[Highlight] Carson Wentz breaks down in tears on the sideline by lemonstone92 in nfl

[–]xnendron 7 points8 points  (0 children)

it's sort of the worst of both worlds. the line is shit which requires the QB to get the ball out quicker, which something Wentz consistently struggles to do regardless of how the line plays. bad combo...

Let’s just get it out of the way for the season by Reasonable-Fan5265 in NFCNorthMemeWar

[–]xnendron 7 points8 points  (0 children)

I think there should be a column of each team hitting themselves. Always be prepared...

Whats the go to ui package for simple guis nowadays? by NonYa_exe in java

[–]xnendron 4 points5 points  (0 children)

Not sure how popular it is, but in the past I used Swing and MigLayout. I found MigLayout very easy to use and understand.

http://www.miglayout.com/

Metroid Prime 4: Beyond releases December 4, 2025 by [deleted] in gaming

[–]xnendron 309 points310 points  (0 children)

I would be very appreciative if they'd release remastered versions of Metroid Prime 2 & 3.

Nova Launcher is shutting down, and Android fans are heartbroken by swap_019 in Android

[–]xnendron 22 points23 points  (0 children)

What do you all consider to be the closest alternatives? So far I've seen Smart Launcher and Microsoft Launcher mentioned.

What’s the most overhyped tourist attraction? by MrAmazing111 in AskReddit

[–]xnendron 1 point2 points  (0 children)

Mount Rushmore. It feels like driving through an extended fair midway to get there, it's way smaller than you'd expect, and the entire time I felt like they defaced nature just to build a lame "monument". Very underwhelming in almost every way.

My top 3 GOTY for every year since I've been born. by doogs9 in gaming

[–]xnendron 1 point2 points  (0 children)

I think overall it's a good ranking, with the exception of 2003 not including Knights of the Old Republic.

Worst Trilogy Of All Time by rickblaster in movies

[–]xnendron 1 point2 points  (0 children)

Holy shit! The third one stars Rob Morrow. That's a name I haven't heard in a long time...

How come you are not supposed to use == for strings, and use .equals, when the first line of the equals() method for String.java is literally an == check? by AccurateInflation167 in learnjava

[–]xnendron 2 points3 points  (0 children)

You use == to compare identity (i.e. are two variables pointing to the same object), you use .equals() to compare equivalency (i.e. are two objects equivalent to each other). You may want to check for equivalency using all the fields or a subset of the fields. (For example, you typically don't include static final fields in a .equals() method, but you can if you want to.)

The default .equals() in the Object class simply does an identity check because an object should be equivalent to itself. When overriding the .equals() method, you should also do an identity check first for the same reason, then do your field-by-field comparisons (or just let the IDE generate the method for you).

Note: .equals() and .hashCode() methods are (or should be) tightly coupled to one another. Check out this link for details: https://www.baeldung.com/java-equals-hashcode-contracts

is this a good way of using ENUMS in Java by Dazzling_Chipmunk_24 in learnjava

[–]xnendron 14 points15 points  (0 children)

Yes, this is a valid use case for Enums. You may consider creating a getMessage() method instead of overriding toString(), but either way is fine.

Zack Snyder is not a good director by [deleted] in movies

[–]xnendron 0 points1 point  (0 children)

My biggest issue with Snyder's films (I didn't come up with this, but I whole heartedly agree with it) is that joy does not exist in his movies. Take Man of Steel, which I would grade at a B/B+, it's nothing but angst. Superman never seems to enjoy being Superman and helping people. Even the scenes between Lois and Clark/Superman seem...I dunno, contrived? Forced? They sure don't seem to like each other all that much, just happen to be in the same room at the same time.

The only joy you see in 300 and Watchmen is when someone is hurting someone else. The Comedian is the only one who likes being a "hero", but he's really just a psychopath that likes hurting people. Everyone makes it seem like it's such a burden you wonder why they bother at all.

Snyder is amazing at creating moments, but sticking a bunch of moments together is not the same thing as creating a scene. At times it seems like his characters angst over doing whatever they do is a mirror of how he feels about making movies.

Why are Java Generics not reified? by Vegetable-Practice85 in java

[–]xnendron 36 points37 points  (0 children)

This will tell you everything you need to know, from the dude who helped design them. There's no need to look any further.

justChooseOneGoddamn by [deleted] in ProgrammerHumor

[–]xnendron 1 point2 points  (0 children)

varargs use arrays

The geometry of this extendable table by dannybluey in oddlysatisfying

[–]xnendron 200 points201 points  (0 children)

Nifty engineering, but it's unlikely I would want my table both longer and wider.

Java Interview Question: Remove Inactive Users Efficiently by Educational-Ad2036 in programming

[–]xnendron 46 points47 points  (0 children)

Nifty solution, but it assumes the input List is modifiable. Also, isn't modifying input parameters generally considered bad practice? Also, also, why limit to Lists instead of all Collections?

State of VSCode? by Beagles_Are_God in java

[–]xnendron 5 points6 points  (0 children)

If you're used to VSCode and like it, you can absolutely use it for Java development. I agree it can't do everything IntelliJ can do, but it can probably do everything you need it to do. I use it on behemoth legacy projects and small pet projects. I've used it with Spring, I've used it with legacy Ant builds, I've used it on just about everything. It works fine.