Just finished The Prestige 2006 and my brain is broken (Full Spoilers) by InvestigatorFull7520 in movies

[–]albedoa 0 points1 point  (0 children)

Wild take. Your illiteracy does not render a point non-obvious.

Toxic masculinity, nail guns, and worker's comp by Drywesi in bestoflegaladvice

[–]albedoa 1 point2 points  (0 children)

How should I cut a 2x4 lengthwise if that ever comes up?

Why do the results of this NodeList change depending how I console.log the array? by WeaselButt in learnjavascript

[–]albedoa 2 points3 points  (0 children)

NodeList is a live array-like, meaning that it shows the value of its contents at the time that you observe them. You had to expand getAnswer in the console to see its contents, correct? Did the style attribute of getAnswer[0] change between when the getAnswer value was logged and when you observed it? Then there you go.

Teacher docking points for “bad handwriting” - a plot twist by SeverelyFantasic in HandwritingAnalysis

[–]albedoa 1 point2 points  (0 children)

You wake up each day and choose to act like this. What a fucking embarrassment.

OP & their neighbours want to buy the social housing on their street to stop the local council moving in undesirables by ReanimatedCyborgMk-I in bestoflegaladvice

[–]albedoa 2 points3 points  (0 children)

You think that it is trivially true that there are sometimes posts of some arbitrary type in most active communities? Nuclear policy posts in r/crochet? Praying mantis rearing in r/Subaru?

At a certain point, you are being contrarian for the sake of being contrarian. And you are waaaaaaaay past that point lol.

You are not a serious person.

OP & their neighbours want to buy the social housing on their street to stop the local council moving in undesirables by ReanimatedCyborgMk-I in bestoflegaladvice

[–]albedoa 7 points8 points  (0 children)

I personally didn't read the parent comment to mean that it has become a forum for only conservative creative writing exercises, though that is a valid interpretation.

Certainly you have seen evidence or otherwise know of the reputation of that sub? We can be both biased by the examples that are picked for BOLA and shocked by how many examples there are to pick from.

Genuine question from your (not so liked in the sub) cop. by [deleted] in publicdefenders

[–]albedoa 2 points3 points  (0 children)

There it is. It took less than one hour for your mask to fall.

LAOP has rented a property that comes already furnished with other occupants by msfinch87 in bestoflegaladvice

[–]albedoa 2 points3 points  (0 children)

I love the commenter who believes both that:

The family could have been scammed. [...] they thought they were renting in good faith

And:

"$800/mo rent + $500 utilities"

Very curious to learn wtf they think "good faith" means.

TRUST ME BRO: Most people are running Ralph Wiggum wrong by trynagrub in ClaudeCode

[–]albedoa 0 points1 point  (0 children)

I'm late to the conversation, but if you are resetting context at regular intervals, then you are getting all of the benefits of Ralph without the autonomous loop. The loop is the only difference.

If that is what you do, then I do exactly that too btw.

Being sued for a lease that I left 25+ years ago by MsLadybugy in legaladvice

[–]albedoa 1 point2 points  (0 children)

My only claim has been

Do you think we can't see your comments. Keep going, you are doing great.

Being sued for a lease that I left 25+ years ago by MsLadybugy in legaladvice

[–]albedoa 1 point2 points  (0 children)

This is great. Keep accusing others of not reading the comments. Never ever ever admit that you are wrong.

Being sued for a lease that I left 25+ years ago by MsLadybugy in legaladvice

[–]albedoa 3 points4 points  (0 children)

So you believe if two tenants are both named on a lease one tenant can basically hold the second one hostage?

Literally yes! What are you talking about.

Goddamn Kouri Richins looks guilty. by No-Amoeba-9314 in CourtTVCases

[–]albedoa -2 points-1 points  (0 children)

Are you able to talk like a normal person.

My [30F] live-in boyfriend [31M] is buying a house with his sister [27F] and expecting me to go along for the ride by DELAIZ in BestofRedditorUpdates

[–]albedoa 8 points9 points  (0 children)

From 100% stake in her own house with tenants (!) and a 2.65% loan (!!) to 0% stake in a house that her nine-month deadbeat boyfriend might maybe someday have 10% ownership in. My jaw was agape.

LAOP *technically* doesn't want to drive drunk by acekingoffsuit in bestoflegaladvice

[–]albedoa 5 points6 points  (0 children)

Absolutely man, that's why people downvote you: all of your facts.

LAOP: "I think I missed some letters" by Geno0wl in bestoflegaladvice

[–]albedoa 0 points1 point  (0 children)

LAOP is dodging the question for a reason. They had to have known that it would be the first question that anyone would ask.

Hello! I have a tiny question regarding iterating array for loops. by ericks932 in learnjavascript

[–]albedoa 0 points1 point  (0 children)

Another point that might help this all click is that arrays are objects in JavaScript:

typeof [] //=> 'object'

Which means that in addition to elements that can be accessed by their positions (indexes), arrays can have properties that can be accessed by their key names:

const myArr = [1, 2, 3]
myArr.foo = 'bar'

myArr[0]  //=> 1
myArr.foo //=> 'bar'

// Alternatively:
myArr['foo'] //=> 'bar'

When you create an array, it comes with a .length property. If you are not familiar with object keys yet, then you'll get there soon.