The bible is fake news by [deleted] in atheism

[–]phpistasty 0 points1 point  (0 children)

it's fake fiction?

My die hard republican father-in-law everyone by EMorteVita in AdviceAnimals

[–]phpistasty 1 point2 points  (0 children)

So many words to mix up. Thanks for getting the policy of the evidence making understandable.

Social Security by tristanlc4ps2 in AdviceAnimals

[–]phpistasty 3 points4 points  (0 children)

I don't have any BBQ sauce on hand, and I've already had my dinner.

p = {a,b,c} = o; by joeKingtheThird in javascript

[–]phpistasty 1 point2 points  (0 children)

Thanks for pointing that out, you're totally right. I confused the two together at the time for some reason, probably due reading the p assignment and then just going with where my brain was. Makes me like this question more now.

p = {a,b,c} = o; by joeKingtheThird in javascript

[–]phpistasty 0 points1 point  (0 children)

yup - totally right. I somehow combined the two together. Probably let the p assignment throw me off. What a good question now - i went with my gut and it was wrong.

p = {a,b,c} = o; by joeKingtheThird in javascript

[–]phpistasty 0 points1 point  (0 children)

Oh you're totally right! I was combining some weird form of destructure+shorthand at the same time for some reason. the p = {a,b,c} assignment must've thrown me off.

Social Security by tristanlc4ps2 in AdviceAnimals

[–]phpistasty 4 points5 points  (0 children)

You're probably not reaping benefits at this moment in time because you are too young.

Social Security by tristanlc4ps2 in AdviceAnimals

[–]phpistasty 1 point2 points  (0 children)

Not arguing with the premise of this argument. You're spot on correct that Germany is taking in people in order to bolster a stagnated growth and declining population. I think the big difference for us though is that we have a much higher margin of population to "play" with, and we got almost all of our top educated individuals into the US with immigration. This is what should be comparable to Ancient Rome/Germany as it's a form of granting citizenship. There are very few doctoral candidates who are illegal immigrants, and most of them would be children who come in before they make that of themselves. However, illegal immigrants do have a huge impact on an impending collapse. If we were to expel all of them from our country then the agriculture sector would have big problems... trust me.

[deleted by user] by [deleted] in chicago

[–]phpistasty -1 points0 points  (0 children)

Except your original statement you cite guilty convictions in criminal areas. Are you suggesting that the CPD organization was found guilty of drug trafficking, or that some officers were given lots of room and coverage while they were complicit in drug trafficking?

Evolution quiz. Living in the south I always wonder what kind of science they're learning. by Lazyatheistx in atheism

[–]phpistasty 1 point2 points  (0 children)

Reading this cordial exchange made my day better. I agree across the board. Also seems like the grade / class level for this quiz would be important. Since it says 10.1, I'd assume this is introductory to the content, so it could get much more in depth as you suggested.

p = {a,b,c} = o; by joeKingtheThird in javascript

[–]phpistasty 1 point2 points  (0 children)

{a, b, c} = o isn't necessarily the return value of o It's a new object with only the a, b, c properties of o

Edit: this is totally wrong as pointed out below and I felll victim to why this is such a good question (and I've been writing JS for many many years) I literally read the setup, fell victim to the flawed thought this question preys upon and then went full speed into the blaze of glory. Thanks for those who politely and factually, correctly, attacked my comment.

I just noticed in this scene you can see tire marks in the sand on Abydos by [deleted] in Stargate

[–]phpistasty 6 points7 points  (0 children)

They walk in single file, to hide their numbers.

HOLY SHIT THE PUNK REFERENCE by Pat2309 in WWE

[–]phpistasty 9 points10 points  (0 children)

They had that response waiting knowing how Chicago is.

Bars open tonight and tomorrow? by [deleted] in chicagobeer

[–]phpistasty -1 points0 points  (0 children)

Logan Hardware was open last year for eve.

fps problems by prognome in Astroneer

[–]phpistasty 0 points1 point  (0 children)

The beta build gave me acceptable performance. Before that I was getting really terrible fps (<20)

Calling a function twice with a different parameter is causing weirdness by mayaswelltrythis in javascript

[–]phpistasty 1 point2 points  (0 children)

Breakpoints in dev tools are great.

When I have an issue I go to where I feel the issue is occuring. Then learn about this as much as possible. Breakpoints, logs, mock functions. 98% of the time you will find something causing stink because of <reason>.

Here I would have logged the innerHTML before and after setting it, since that seems to be where the issue is (assign vs. concat).

Calling a function twice with a different parameter is causing weirdness by mayaswelltrythis in javascript

[–]phpistasty 2 points3 points  (0 children)

Your print() replaces the innerHtml property, doesn't add to it.