

Newer games rely a lot more on online features than StarCraft did. You could play that without access to the internet when it came out.


Newer games rely a lot more on online features than StarCraft did. You could play that without access to the internet when it came out.


That helps against sparks jumping between the balloon and the ground, but things could still get zappy between the individual components of the balloon.


No worries, that only happens if there’s a spark, like for instance some static electricity. Shouldn’t be a problem here, surely this thing won’t generate any of that.


I’m guessing this is next to a golf course, and people try to keep playing the ball after it lands in the cemetery.


This article says the director was a friend of a friend, and “the first animated film made in Scotland” played on his national pride.
It also says I got the order wrong, and that he declined all those roles after The League of Extraordinary Gentlemen.
https://faroutmagazine.co.uk/bizarre-story-sean-connerys-final-film/
I agree. If it looks like that on the inside, why show the cross section?


It always meant manchild.


Not handing them money and weapons to continue their genocide is meddling in their affairs?


Holy shit, I never even heard of that, and the poster gives me an idea why. Was this by request from his grandkids or something?


You seem to be suffering from imposter syndrome. Step 1 is to understand that we’re all just winging it.
Are you getting the job done? Plenty of people you perceive as smarter than you are not getting the job done.


Most functional War of the Worlds merch.


Sean Connery turned down both Gandalf in Lord of the Rings and Morpheus in The Matrix because he didn’t understand the scripts. He turned down Dumbledore in Harry Potter because it was too fantastical. Then he tried a reverse approach where he accepted the next role he didn’t understand, because clearly that was where the money was at. So he accepted Allan Quartermain in The League of Extraordinary Gentlemen, a movie which flopped hard. Then he ragequit the industry and retired.


It’s admittedly been a while since last time I saw it, but I never mentioned chess. The suggestion to play chess in the screenshot is a callback to when the computer tries to suggest playing chess instead of global thermonuclear war earlier in the movie. The computer did not apply tic tac toe learnings to chess, and I never claimed it did.


You should! Actually a pretty accurate depiction of hacking. He spends weeks war dialing every phone number in the range in order to hack the computer.


I don’t know if we’re doing spoilers for 40+ year old movies, but
Isn’t this really its conclusion after being told to play tic tac toe against itself? Then it learned from that and applied it to its global thermonuclear war simulations.
The tentacles of an octopus are usually not attached neatly in a row. Some of them will be behind the other legs.
We’re talking about different halves. The regex \w+\s+ matches "The " (“The” followed by a space), not “The MCU”.
Why do we replace the commas again with new lines?
Consider this two-line output:
$ echo 'a\nb'
a
b
$
We convert the newlines to commas. Now there is a comma at the end of the last line as well, and because of no newline, the next prompt is at the end of the output:
$ echo 'a\nb' | tr '\n' ,
a,b,$
Substituting only the last comma ( means end of line) allows us to get the output we expected:
$ echo 'a\nb' | tr '\n' , | sed 's/,$/\n/'
a,b
$
Or is there a way to combine them
These two commands have equivalent output:
tr '\n' ',' | tr ';' ','
tr '\n;' ',,'
What tr does is take a list of characters in parameter 1 and converts them to the equivalent position character in parameter 2. There’s a little more to it (it supports ranges, for example), but this will do the job. To learn more you can run man tr to get the documentation for it.
I tried
What \w+\s+ Says About
\w+\s+ matches “at least one word character and then at least one whitespace character”, and that’s not what you want. “The MCU” is one or more word characters, then a space, and then one or more word characters again, and that second part you’re not matching at all. In this case, you’re probably better off making a negative matching group where you make sure you don’t match across separators. What [^,;]+ Says About would match anything that’s not a comma or semicolon, for instance.
The other problem with regex is that every implementation does things differently. For example, sed would interpret that plus as a literal +, so for sed syntax you’d need to use \+ instead. It also does not support \w and \s, and whether to use ( or \( for a literal parenthesis also varies between implementations. I often switch to Perl if I need to do some more complex regex shenanigans.
What I’m saying is that StarCraft didn’t so much “have that issue solved” as it just didn’t create that issue for itself. It’s also a lot easier to do things offline when your game is designed to be sold once instead of the micro transactions hellscape and constant “events” you see nowadays.