haha no source, just a dumb joke.
haha no source, just a dumb joke.
Japan: Checkmate
:: Reveals 10X more laws regulating game consoles ::
Removed by mod
it was the style of the time
They’re probably all too busy working on Half Life 3
True polymorph is a hell of a drug.
Full name is GNUIMP anyway
Does Lemmy have a maps without New Zealand community?
Having played the absolute shit out of all of them at launch, including the non canon ones, Fallout 2 is my favorite, followed by New Vegas and 76. 4 was fun, but I spent more time building bases in 4 than I did in the story.
I’ve probably put more hours in 76 (since beta) than 4 at this point, specifically because it’s multiplayer, and Im pretty sure I had at least 400 hours in four.
I’d preorder it, no regrets.
Yeah, never said it was, just that if you really want to emulate that style you mostly can.
It’ll probably happen when GabeN dies or retires.
x = foo(y:=bar(), baz(), y) or z
should work assuming foo bar and baz are functions being called?
if this is setting y to the effect of bar() + running baz after, then:
x = [bar(), baz()][0] or z
might work
and if you need y to be defined for later use:
x = [(y:=bar()), baz()][0] or z
but thats from memory, not sure if that will even run as written.
if I get to a real computer I'll try that with an actual if statement instead of a bastardized ternary.
“a = x if foo else y” is a perfectly cromulent statement!
iPython makes experimenting in an interactive manner so easy, I use it every day.
We found a race condition in the teleport code. Turns out the efficiency curve for the restoration magic that undoes the disintegration in real time has a parabolic mana requirement related to mass, but disintegrate has a caterneric curve. For human sized stuff they match up, but if you try to teleport something of sufficient mass the restoration starts to draw a disproportionate amount of mana and the whole thing falls apart.
Also, we need to hire some more QA contractors.
I’m going to rename my NAS “online discussions” in your honor.
If you want to do web requests/ use API’s, use ‘requests’
graphs/reporting, I’ve used ‘bokeh’ before, it was nice.
I’ve never used PyDroid, so I’m not sure how you’d install things, but these are both available via pypi, python’s package repository.