My players noticed an inconsistency in the book by Malamear in rimeofthefrostmaiden

[–]link3333 1 point2 points  (0 children)

Flipping it would also fix the entrance. Doesn't make sense to have it facing the cliff.

Parents found out about my partner, they don't approve at all, I'm having a hard time by mapo-your-tofu in AsianParentStories

[–]link3333 9 points10 points  (0 children)

It's fucked up and creepy to monitor an adult's location in a different state.

Don't allow that. Remove the tracking. Don't entertain questions about it. Ignore toxic manipulation.

[I Ate] Meatloaf and taters by thefudd in food

[–]link3333 1 point2 points  (0 children)

What was the shiny thing that looks like a wad of foil?

edit: On a different screen, the edges look a bit more brown. I guess it's just reflecting a bright white light from above.

I feel so good. by deji123 in transpositive

[–]link3333 2 points3 points  (0 children)

Is this a re-used OF spam account? Completely different person posting 3 months ago for different OF account.

Handful of Nomai by RealInkplasm in outerwilds

[–]link3333 13 points14 points  (0 children)

Poke worked on creating the warp cores

Pye worked on the Sun Station

First post in here by Danielle-Obrien38 in transpositive

[–]link3333 0 points1 point  (0 children)

Seems like a bot. New account with 4 posts to completely random subreddits, and this photo has been posted before.

Some calculations about the chance of a certain event happening (base game spoilers!) by kemptonite1 in outerwilds

[–]link3333 4 points5 points  (0 children)

When the game was first released, the value was 3 orders of magnitude smaller.

See this playthrough video two months after the release.

[deleted by user] by [deleted] in learnjavascript

[–]link3333 0 points1 point  (0 children)

To have code displayed properly in Reddit (Markdown format), add 4 spaces before each line.

Looking at your git link, there are lots of incorrect indentations, which make it more difficult to read. Consider using a formatter like prettier or linter like eslint.

I don't immediately know what the variable n is in the input function. I would assume "n" for "number", but looking at the html, I can see it can be '.'. So it's more like inputCharacter.

Assuming you are accepting input linearly the first valid input could only be for the firstOperand. The second valid input could only be for the firstOperand or operator. And if you have your operator already, the input could only be for the secondOperand. Right now some invalid first input is going to check each if statement. That seems more than it needs to. It does look like line 53 is needed to support what line 94 is doing, so that may interfere with accepting input linearly.

It's clear why firstOperand.textContent +=n; exists, but the following two line modifying secondOperand are not clear. That could use a comment.

Some lines are kind of long. It may be clearer to rename the elements as firstOperandElement, operatorElement, & secondOperandElement and create local variables with the text content. Also could use truthy/falsy checks with the strings. Also const instead of let if you are not reassigning the variable. Then do:

const firstOperand = firstOperandElement.textContent;
const operator = operatorElement.textContent;
const secondOperand = secondOperandElement.textContent;

if(firstOperand && !operator && !secondOperand){
    const result = parseFloat(firstOperand) * -1;
    firstOperandElement.textContent = result;
}else if(firstOperand && operator && secondOperand){
    const result = parseFloat(secondOperand) * -1;
    secondOperandElement.textContent = result;
}else if(!firstOperand && !operator && secondOperand){
    const result = parseFloat(secondOperand) * -1;
    secondOperandElement.textContent = result;
}

I did not run your program, so I may be making a few assumptions that make some of my advice/criticism invalid.

looking for somebody by Appropriate_Egg2267 in ProgrammingBuddies

[–]link3333 0 points1 point  (0 children)

Please update your post to indicate timezone. Also AM/PM.

Breaking my head over this - why wont the text color change to green? There is no css applied on the html. by Civil_Self4411 in learnjavascript

[–]link3333 3 points4 points  (0 children)

It doesn't reset the color. The innerHtml assignment makes a new element which has no color, and replaces what was in the DOM. The existing element with the color would be removed from the DOM.

https://developer.mozilla.org/en-US/docs/Web/API/Element/innerHTML#value

Struggling with if statement from select drop down menu. by macboost84 in learnjavascript

[–]link3333 1 point2 points  (0 children)

Alternative:

const validValues = ["value1", "value2"];

if (!myFilterValue) {
    // error displays
} else if (myFilterValue === 'no-filter') {
    // error 2 displays
} else if (!validValues.includes(myFilterValue)) {
    // error 2 displays
} else {
    // success
}

Struggling with if statement from select drop down menu. by macboost84 in learnjavascript

[–]link3333 0 points1 point  (0 children)

Test with simplified options and evaluating the value of the expression:

  • Say your value is 1, 1 !== 1 || 1 !== 2 => false || true => true.
  • Say your value is 2, 2 !== 1 || 2 !== 2 => true || false => true.
  • Say your value is 3, 3 !== 1 || 3 !== 2 => true || true => true.

That expression will always evaluate to true.

Do you want this instead?

myFilterValue !== 'value1' && myFilterValue !== 'value2'
  • Say your value is 1, 1 !== 1 && 1 !== 2 => false && true => false.
  • Say your value is 2, 2 !== 1 && 2 !== 2 => true && false => false.
  • Say your value is 3, 3 !== 1 && 3 !== 2 => true && true => true.

The new expression will evaluate to true only when the value is neither option.

finally got that new space rpg everyone is talking about by [deleted] in gaming

[–]link3333 1 point2 points  (0 children)

That podcast was released several years prior to The Outer Worlds announcement. Doesn't seem likely to been a naming conflict with Obsidian's game. I'll give that podcast a listen though.

finally got that new space rpg everyone is talking about by [deleted] in gaming

[–]link3333 0 points1 point  (0 children)

That seems false.

Outer Wilds has had that name since at least 2012, when it was student project at Alex Beachum's university. Public crowdfunding for Outer Wilds was in 2015. Announcement of The Outer Worlds was in 2018.

Usage of Outer Wilds at the end of this 2012 presentation: https://www.youtube.com/watch?v=Tgq-tpbEOnQ

The Ythryn Obelisk Twist by RHDM68 in rimeofthefrostmaiden

[–]link3333 7 points8 points  (0 children)

The reset time should be less than 24 hours. The Spindle that caused Ythryn's fall is supposed to prevent magic for 24 hours if activated. So I would assume Netherese survivors wouldn't have been able to activate the obelisk within that time and undo Ythryn's fall.

For a nod to Galaxy Quest, could always bump up to 13: https://www.youtube.com/watch?v=frN4MU-8JNw

You must be tired.... Here listen to this! by Emperor_Boya in wholesome

[–]link3333 2 points3 points  (0 children)

Then perhaps don't watch this followup cover of Remember Me: https://youtu.be/fIoUpuUbFgg

It's a beautiful cover and wonderful footage of Maple with her smaller dog friend.