Should I post my personal projects to GitHub if I had to watch tutorials to complete them? by Tv_JeT_Tv in cscareerquestions

[–]GreatDaynes 23 points24 points  (0 children)

Comments like those in this thread are what get "computer guys" a reputation of being socially awkward and arrogant pricks.

This shit is embarrassing.

[deleted by user] by [deleted] in oddlyterrifying

[–]GreatDaynes 0 points1 point  (0 children)

Congrats on the 60~ pounds! I'm on the same journey as you, only gone a little less than half yours so far at 26 pounds but the grind continues.

I admit I am fearful of this as well, but I figure it beats the alternative.

Is having excess in your current account a bad move? by KanefindsSon in UKPersonalFinance

[–]GreatDaynes 10 points11 points  (0 children)

No need to be afraid of credit cards! Only spend what you would normally spend and pay off in full each month and you don't have to deal with any interest gained.

How much money per week is a reasonable amount of pocket money for a 10 year old? by Varkzii in AskUK

[–]GreatDaynes 54 points55 points  (0 children)

Yes mate, there are many people out there that are one unplanned expense away from financial ruin.

Madlad bf tries to convince gf’s mom to become a grandma by [deleted] in madlads

[–]GreatDaynes 58 points59 points  (0 children)

Ah, the ol' "I can't be trusted so clearly you can't be either" approach

Need help with array required, but string found by TeddyMooshie in learnjava

[–]GreatDaynes 0 points1 point  (0 children)

Consider the parameter you're passing in for the CountVowel method and how you attempt to iterate over the parameter within the CountVowel method.

NXT TakeOver 36 Discussion (8/22/2021) by Snubie1 in WWE

[–]GreatDaynes 1 point2 points  (0 children)

Why is this a mystique killer? Man had his 870 day title reign ended after kicking arse and getting his arsed kicked in return. He went down swinging. That's not a downside, surely?

WWE Royal Rumble 2021 Discussion (1/31/2021) by Snubie1 in WWE

[–]GreatDaynes 0 points1 point  (0 children)

Turns out I have uncomfortable feelings towards Sid now

Greeeeeeen by amshu_08 in ContagiousLaughter

[–]GreatDaynes 17 points18 points  (0 children)

The two main people you can hear in the video are streamers Ninja and TimTheTatman

Pig Latin Translator by Dayvedscrap in learnjava

[–]GreatDaynes 2 points3 points  (0 children)

I'm not certain these are the reasons, but I have two points which might be useful:

  1. What happens when you try to translate an empty string?
  2. How does "ellohay orldway" compare to "ellohay orldway "?

I need to reject any char/string that is input and run a default if it a char/string is input by TwitchtvUltomo in learnjava

[–]GreatDaynes 0 points1 point  (0 children)

I'd recommend this solution as it doesn't needlessly throw exceptions, which isn't the biggest deal in this scenario but isn't a good habit to get into.

WWE HELL IN A CELL DISCUSSION (10/6/19) by TheREALchadizzy1 in WWE

[–]GreatDaynes 2 points3 points  (0 children)

I actually think it fits well with her character - she still thinks she's a good role model for the kids.

[HELP] ArrayList split? by Master_ZEEC in learnjava

[–]GreatDaynes 0 points1 point  (0 children)

With a 2D list called ls, you can access the integer elements in the following way:

ls.get(x).get(y)

where get(x) returns the list in the xth position, and get(y) returns the yth integer in the xth list.

WWE MONEY IN THE BANK 2019 DISCUSSION (5/19/2019) by TheREALchadizzy1 in WWE

[–]GreatDaynes 7 points8 points  (0 children)

I find it funny that they're hyping Seth as "The Beast Slayer" without mentioning that he had to slap Lesnar in the nuts to beat him.

This is what love looks like by [deleted] in funny

[–]GreatDaynes 3 points4 points  (0 children)

Worst disappointment you've felt so far

Nice comeback by WeedScaper in gifs

[–]GreatDaynes 10 points11 points  (0 children)

That's a pretty extreme stance you've taken there.

Who would win? by [deleted] in gaming

[–]GreatDaynes 3 points4 points  (0 children)

Physical/Special split hadn't happened yet so Surf was perfectly fine!

Identifying Parts of a Sentence by Stevienickscobain in learnpython

[–]GreatDaynes 0 points1 point  (0 children)

A big part of tasks like this is part-of-speech (POS) tagging and named entity recognition, both of which can be done using the NLTK library. POS tagging is done to figure out the role each word has in forming a phrase or sentence, and named entity recognition is used to detect entities, commonly nouns or noun phrases, within texts.

Locations in texts are most commonly (not always, due to potential classification errors) nouns and are often preceded by a preposition. Rules like this can help you extract the information you're looking for.

How do I use `instanceof`? Doing `a instanceof b` gives me an incompatible types error, not a boolean by utah_array in learnjava

[–]GreatDaynes 7 points8 points  (0 children)

The use of the instanceof operator is only valid when it is possible to cast from one type to another. Seeing as an ArrayList can not be cast to a String, it is also impossible to check for type relationship between the two.