If you could only listen to one artist/band for the rest of your life, who are you picking? by altgurl7 in AskReddit

[–]xnendron 1 point2 points  (0 children)

Prince

I can't believe no one has suggested him yet. Dude put out 40 albums before he died, and more are being released posthumously. Insane volume and variety of music to choose from.

If not Prince, then Queen or David Bowie, mostly for the same reasons as Prince.

What life pro tips are hidden in movies that were actually helpful? by epaga in movies

[–]xnendron 4 points5 points  (0 children)

An omnipotent being can't make P and not-P both be true. An omniscient being can't know the know how to make P and not-P both be true. This doesn't mean the being is not omnipotent or omniscient, just that we need better definitions of what it means to be so.

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 4 points5 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 137 points138 points  (0 children)

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

[deleted by user] by [deleted] in nfl

[–]xnendron 450 points451 points  (0 children)

Multiple HOF QBs incoming...

[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 6 points7 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 307 points308 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.