

There’s an earlier bit that complements that nicely:
“it turns out that the core competency of smiling and promising people things that you can’t actually deliver is highly transferable.”
There’s an earlier bit that complements that nicely:
“it turns out that the core competency of smiling and promising people things that you can’t actually deliver is highly transferable.”
First guy looks like hes from Silent Hil 2
For a hot second my brain interpreted his face as the back of his head and it really got to me.
Not shown: He’s already started to burrow with his feet.
yup, but that answer was based entirely on the assumptions present in the question. D is all divisible work, and C is everything else, because that’s literally all you can assume to make the math work. D has to therefore be 12 months worth of divisible work minus C. C could very well be 12 months of work, meaning D is zero and adding more workers won’t matter.
Well, if T is total time to build, D is the time that can be distributed equally among any number of workers, and C is constant, indivisible time extra time that goes along with construction, and X is the number of workers, then:
T - C = D / X
so, since T is 12 and 6 is half of 12, then:
T/2 - C = D/X * 1/2
or
T/2 - C = D/2X where X > 0, C = 0, T=12, and D = (T - C) / X
which is both the answer it’s looking for (twice as many workers) and the correct answer (it depends on at least two things we don’t know), while assuming what they’re assuming, which is C = 0
(Stupid ass junior high math problems piss me off, junior high is a traumatic experience)
They’re probably all too busy working on Half Life 3
In the U.S., you can build rockets all day long, they cannot be guided.
https://www.law.cornell.edu/uscode/text/18/2332g
You’d have to convince the feds it was never designed to be a weapon. Good luck with that.
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.
Because he was the class clown, not because he was brown.
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.
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.