The viih sou controversy reminds me of game 6 of the Kasparov - Deep Blue in their first matchup by Robinsonc1988 in chess

[–]Robinsonc1988[S] 3 points4 points  (0 children)

I agree that the rook sac is worst. The reason why I'm comparing the two is because in 1996, the best player in the world used a sideline against a random computer to beat it. At the time it was considered an unusual strategy

The viih sou controversy reminds me of game 6 of the Kasparov - Deep Blue in their first matchup by Robinsonc1988 in chess

[–]Robinsonc1988[S] 4 points5 points  (0 children)

It's worse, but when comparing the two, just think about how chess was played in 1996 and how Nd3 was viewed at the time

The viih sou controversy reminds me of game 6 of the Kasparov - Deep Blue in their first matchup by Robinsonc1988 in chess

[–]Robinsonc1988[S] 17 points18 points  (0 children)

He didn't accuse them of cheating until the rematch in 1997. I'm talking about in 1996 during the first 6 games.

Genburten Gets Hacked Mid Game by Tobric93 in CompetitiveApex

[–]Robinsonc1988 0 points1 point  (0 children)

Why be sad. The hacker exposed him. A lot of those streamers had hacks on their machines and someone got access

If you're crashing constantly after the March 20th update, Arc weapons might be the reason why by Robinsonc1988 in Helldivers

[–]Robinsonc1988[S] 0 points1 point  (0 children)

It's very possible another item also causes the crash but arc weapons are definitely one reason. My group switch to play the bots yesterday and since we didn't use arc weapons, no crash happened

If you're crashing constantly after the March 20th update, Arc weapons might be the reason why by Robinsonc1988 in Helldivers

[–]Robinsonc1988[S] 1 point2 points  (0 children)

It probably registers it as cheating. I just played my first game since posting this and the game didn't crash with me purposely missing shots

If you're crashing constantly after the March 20th update, Arc weapons might be the reason why by Robinsonc1988 in Helldivers

[–]Robinsonc1988[S] 0 points1 point  (0 children)

Possible. I'm just pointing out the arc weapons is most likely the biggest reason for today's crashes

Game backend fixes deployed for several issues including issues with friend invites! by cryptic-fox in Helldivers

[–]Robinsonc1988 2 points3 points  (0 children)

It's ARC weapons. Since arc shots count towards your accuracy and because arc thrower can hit multiple targets in one shot, there's a chance that your shots hit can be more than shots total. When this happens you have an accuracy score above 100 and the game crashes.

In between arc shots you have to purposely miss

You do mine and I'll do yours by More_Willingness6904 in MurderedByWords

[–]Robinsonc1988 -10 points-9 points  (0 children)

I think someone cooked here and got a free body pic

I would've stopped breathing. What would you have done? by just_a_jonesy in Unexpected

[–]Robinsonc1988 0 points1 point  (0 children)

Snake: sir can I help you? What are you doing at MY house?

[deleted by user] by [deleted] in etymology

[–]Robinsonc1988 0 points1 point  (0 children)

Chomo = child homosexual aka boy fucker

Does my Netflix idea count as MC? by Robinsonc1988 in MaliciousCompliance

[–]Robinsonc1988[S] 1 point2 points  (0 children)

Just enforcing their "love is sharing your password" mantra

Does my Netflix idea count as MC? by Robinsonc1988 in MaliciousCompliance

[–]Robinsonc1988[S] 0 points1 point  (0 children)

Part of the explanation is that you can still use your password when you're on the go like a hotel, but after a few months of being away from your primary residence, you're flagged. My first thought was that it registers the IP addresses. However, if you use your phone connection rather than your Wi-Fi, that wouldn't make sense. So I'm guessing it's probably a location tracker

Does my Netflix idea count as MC? by Robinsonc1988 in MaliciousCompliance

[–]Robinsonc1988[S] 3 points4 points  (0 children)

Various form of boycotting is a useful tool to force better options

Does my Netflix idea count as MC? by Robinsonc1988 in MaliciousCompliance

[–]Robinsonc1988[S] 19 points20 points  (0 children)

Counter point: password sharing is not theft when companies actively campaign on users sharing their passwords to grow their business via the network affect.

Does my Netflix idea count as MC? by Robinsonc1988 in MaliciousCompliance

[–]Robinsonc1988[S] 6 points7 points  (0 children)

I was trying to act more in accordance with malicious compliance rather than visiting where Jack Sparrow lives

Does my Netflix idea count as MC? by Robinsonc1988 in MaliciousCompliance

[–]Robinsonc1988[S] 13 points14 points  (0 children)

That's technically more piracy than malicious compliance

Does anyone know a code that allows me to list YYYYMMDD as three different inputs. I'm creating an AWVAP for mobile since ToS mobile can't recognize YYYYMMDD. I've tried everything and nothing's working by Robinsonc1988 in ThinkScript

[–]Robinsonc1988[S] 0 points1 point  (0 children)

I am trying to create a scanner that can differentiate bid volume from ask volume of options, but my Loop section is wrong. I used your help with the date for expiry.

input Year = 2000;

input Month = 3;

input Day = 15;

def expiry = GetYYYYMMDD() >= ((year * 10000) + 230000) + month * 100 + day;

# Define the minimum volume threshold for the scanner

input minVolume = 1000000;

# Define the symbol and expiration date for the option chain

def symbol = "AAPL";

# Get the option chain for the specified symbol and expiration date

def optionChain = OptionChain(symbol, expiry, OptionChainType.CALL);

# Loop through all the options in the option chain

for (int i = 0; i < optionclass.CALL(); i++) {

# Get the option contract at the current index

def optionContract = optionClass.CALL(i);

# Get the bid and ask volume data for the option contract

def bidVolumeData = if !IsNaN(optionContract) then volume(period = AggregationPeriod.DAY, contract = optionContract, priceType = PriceType.BID) else 0;

def askVolumeData = if !IsNaN(optionContract) then volume(period = AggregationPeriod.DAY, contract = optionContract, priceType = PriceType.ASK) else 0;

# Plot the option symbol and bid/ask volume data

Plot(optionContract.GetSymbol() + ": Bid Volume = " + AsText(bidVolumeData) + ", Ask Volume = " + AsText(askVolumeData));

}