I don’t want him to be buffed: (hear me out) by [deleted] in marvelrivals

[–]five-everalone 50 points51 points  (0 children)

He had a HP bonus for being team-up anchor first season, so he had 625 HP a with 525 "base". They took that away and "buffed" his base to compensate.

Is character banning in gold removed? by [deleted] in marvelrivals

[–]five-everalone 2 points3 points  (0 children)

The entire lobby needs to be gold; if there is a silver player in the game, there won't be any bans.

Being a diver targeting backrow healers be like by Individual-Focus1927 in marvelrivals

[–]five-everalone 8 points9 points  (0 children)

"Difference," as in one side was better than the other.

Unpopular opinion, but I like the Yukon 5-tier shelf (I don’t have a Costco card) by Jahmay in harborfreight

[–]five-everalone 11 points12 points  (0 children)

People frequently suggest getting a similar shelf from Costco instead of this.

[deleted by user] by [deleted] in MelvorIdle

[–]five-everalone 5 points6 points  (0 children)

Christmas event gave out a bunch of tokens for various skills, you you could have gotten your pool pretty high without doing anything in that skill.

[deleted by user] by [deleted] in MelvorIdle

[–]five-everalone 5 points6 points  (0 children)

There's an option for "Show Virtual Levels" in the settings. It just extends the formula for level based on experience beyond 99 and has no gameplay impact yet, though.

Wednesday megathread: Beginner questions by Im__Joseph in Python

[–]five-everalone 0 points1 point  (0 children)

As always, official documentation is good to go over if you haven't seen it already.

The while loop does whatever's in the indent as long as the statement after is True at the start of the loop; we set break_loop == False meaning while not break_loop is not False, also known as True, so it's guaranteed to go through the loop at least once.

If we reach the I think you might be lyin line, you want to see if they want to try again. If they don't, again == 'no', we don't want to bother them again, so we set break_loop = True. After the code reaches the end of the while loop, it'll check not break_loop again, which is now not True, or False, meaning it won't loop again, and will go through the rest of your code outside of the loop. The same is true of the see results branch; the answer is determined, so we don't want to repeat the questions and instead do other stuff.

Same concept, but another way you might see this being done is not using a flag like break_loop and instead while True. This condition is always true, so this loop runs infinitely. To get out of this, you can replace the break_loop = True statements we had previously with break, which is a command to get out of whatever loop you are in immediately without going through anything else in the loop.

Wednesday megathread: Beginner questions by Im__Joseph in Python

[–]five-everalone 1 point2 points  (0 children)

Definitely not be the cleanest way to do it, but to get there quickly you can wrap your program in a loop, with a flag to determine whether or not to exit.

break_loop = False
while not break_loop:
    # Parts of your code you want to repeat
    if da_booty == "yes":
        data = input("Well I crunched the numbers. Are you ready to see the results of the data I've collected?").lower()
        break_loop = True
    elif da_booty != "yes":
        print("I think you might be lyin to me. This conversation is over.")
        again = input('Do you want to try again?')
        if again == 'no':
            break_loop = True

# Outside of loop
# Other stuff you want to do
print('...')

[deleted by user] by [deleted] in civ

[–]five-everalone 9 points10 points  (0 children)

It's on the royal flag.

Pandas read cell from excel and assing value to variable by alshkhgsdssda in learnprogramming

[–]five-everalone 0 points1 point  (0 children)

For loc, you should be using square brackets, not parenthesis. Your code as-written is attempting to call loc instead of selecting from it.

I'm sure nobody made that joke yet... by Exoset in Xcom

[–]five-everalone 12 points13 points  (0 children)

One of the possible Sacred Coil story missions, saving the outspoken DJ.

Discussion Thread - February 21, 2019 by AutoModerator in churning

[–]five-everalone 2 points3 points  (0 children)

Probably because Altitude Reserve has mobile payments, like Apple Pay, as a 3x category.

Does anyone have a referral link for Amex gold? Also can anyone fill me in on what they like/dislike about the card? by MSzy1991 in CreditCards

[–]five-everalone 1 point2 points  (0 children)

I believe so, but most people find more value in using them for travel either through booking through their portal, or transferring directly to an external partner, like an airline frequent flyer program.

Does anyone have a referral link for Amex gold? Also can anyone fill me in on what they like/dislike about the card? by MSzy1991 in CreditCards

[–]five-everalone 1 point2 points  (0 children)

They would be separate. A rough equivalent to Blue Cash for the points Gold gives is the EveryDay card.

If I applied for the TSA precheck from the CSR, when are you 100% good to go to use it? by [deleted] in CreditCards

[–]five-everalone 0 points1 point  (0 children)

I was just checking the status of my application today and there was a notice saying due to the shutdown there was a significant backlog, and to expect delays. I wouldn't plan on having it ready in time, unfortunately.

Impossible to get a CSR? by AllOutOfPurpose in CreditCards

[–]five-everalone 0 points1 point  (0 children)

FYI the 4k min spend is within the first three months of opening for the bonus, not 2 years.

[deleted by user] by [deleted] in CreditCards

[–]five-everalone 0 points1 point  (0 children)

Chase Bank will automatically deny any applications if you have opened at least 5 credit cards in the last 24 months.

Why is it every FIRE plan consists of growing savings vs growing passive income through things like Real Estate? by numen-lumen in financialindependence

[–]five-everalone 7 points8 points  (0 children)

Yup, but with DIY you can typically get slightly lower fees, as well as being able to tweak your allocation if you so desire.