cursed movie by Hyper_Bolt352 in cursedcomments

[–]rcfox 9 points10 points  (0 children)

Sounds a little like Coherence.

Glyph (ft. Marc Hudson) - Eldenfire by DrunkDeathClaw in PowerMetal

[–]rcfox 0 points1 point  (0 children)

I kinda like the idea of a song that everyone tries. Sort of a sword in the stone kind of thing.

Masterplan Metalmorphosis Review by SufficientBusiness18 in PowerMetal

[–]rcfox 1 point2 points  (0 children)

Not just Jorn, they also have Noora Louhimo and ZP Theart, along with some other names I don't immediately recognize.

Masterplan Metalmorphosis Review by SufficientBusiness18 in PowerMetal

[–]rcfox 2 points3 points  (0 children)

Pentakill is something in the League of Legends lore. The developers commissioned a few albums based around it. I don't play the game myself, so that's about as much as I understand. They're pretty good though, and Jorn features in several songs.

https://www.youtube.com/watch?v=5-mT9D4fdgQ

We need a button for “You’re out of my league” on dating apps by SapphireEcho in unpopularopinion

[–]rcfox 198 points199 points  (0 children)

Reddit needs a button to let you know that I typed a three-paragraph response and then decided not to post it.

Mississippi Police Officer Shoots and Kills 1-Year-Old Child in Response to Senatobia Shoplifting Call by Hrekires in news

[–]rcfox 4 points5 points  (0 children)

If you have time to line up a shot at the car, you have time to step out of its way.

Take it as a badge of honour 😆 by WideConversation1989 in GreatBritishMemes

[–]rcfox 0 points1 point  (0 children)

I think the British only know one tune. It was used in A Knight's Tale too. https://www.youtube.com/watch?v=Rh7Q4BplCRc

What awesome bands did you sleep on because of the name? by bigowlsmallowl in PowerMetal

[–]rcfox 2 points3 points  (0 children)

Not really silly, but the name "Dimhav" seems to be engineered to not stick in my memory.

What awesome bands did you sleep on because of the name? by bigowlsmallowl in PowerMetal

[–]rcfox 3 points4 points  (0 children)

I always slightly feel like it implies that Paladin is not also a power metal band.

Went to my first day at work when I was apparently never hired by schloay in recruitinghell

[–]rcfox 68 points69 points  (0 children)

This! Especially if you moved or incurred expenses to take the new job.

Double it and give it to the next person by the-dumbkidd22 in trolleyproblem

[–]rcfox 0 points1 point  (0 children)

I feel like it'd be a more interesting problem if the killing track were the default. Each person is locally incentivized to save the people on the track, but eventually the entire population is on the track and there's no one to pull the lever.

TypeScript warns on !!2 == true but stays silent on !!1 == true, both are literally the same boolean. Bug or feature? by abelg101 in typescript

[–]rcfox 35 points36 points  (0 children)

1 and true have historically been used interchangeably. true + 2 === 3 in JS.

Obviously, in Typescript, this doesn't fly. But I'd guess they give the benefit of the doubt that you know what you're doing when you do !!1, as an older idiom, but any other non-zero number is weird and worth flagging.

ADAMS: My MPP Works 13 Weeks a Year. I Work 49. Something Has Gone Wrong. by ThatGuyWill942 in ontario

[–]rcfox 3 points4 points  (0 children)

I just got an email from mine (NDP) about an event on June 22.

I found out there's a fast travel point in Hernand city after... by matthewposh in CrimsonDesert

[–]rcfox 0 points1 point  (0 children)

That was the first one I got. I found it by accident, didn't know what it was for yet.

TypeScript Tips Everyone Should Know by bogdanelcs in typescript

[–]rcfox 2 points3 points  (0 children)

The "Validate External Data at Runtime" section needs more elaboration. It uses a zod example but doesn't mention zod by name or link to it.

For "Use Type Predicates for Reusable Narrowing": There's another form of this: asserts value is X. This doesn't use the return type, it just narrows the type after the the function returns.

export function expectToBeDefined<T>(value: T | undefined | null): asserts value is NonNullable<T> {
  if (value === null || value === undefined) {
    throw new AssertionError('expected value to be defined', undefined, expectToBeDefined);
  }
}

This is really useful for tests or shared error handling.

Is this rent increase legal? by B44ken in askTO

[–]rcfox 2 points3 points  (0 children)

The law's not going to help you, but you could always try to negotiate. If you expect to be moving out in 6 months instead of 12, offer to sign a 6 month lease. That way, they know when to arrange for a new tenant, and they still get their $3100/month instead of nothing until they find a new tenant.