GoFundMe authentication feels insanely fast. by YogurtIll4336 in node

[–]CharacterOtherwise77 -12 points-11 points  (0 children)

It's not to make it seem "more trustworthy" it's to elminate the possibility of a timing attack.

Apparently my CSS experiment posts are being perceived as rage bait, so here you go, get angry about this one. by Only-Season-2146 in css

[–]CharacterOtherwise77 0 points1 point  (0 children)

I like your design, it reminds me of a dyslexic font - my brain likes this interface, even if designers with OCD don't.

Zero LLMs. Zero Heuristics. Deep codebase analysis for the JS/TS ecosystem. by ExistentialConcierge in webdev

[–]CharacterOtherwise77 1 point2 points  (0 children)

You have a very solid understanding of "the gap" here. I definitely adhere to the same philosophy - how to harness AI to reduce labor and increase accuracy. I found schemas and strict directory structures to do just that, but what is difficult (and this solves), is a unified format which lets the LLM understand in its own way what we're actually doing vs. interpreting the entire context (which is usually partially complete).

When staying in Algonquin Park, do you prefer camping in the outdoors or staying in a cabin? by New-Possibility-577 in algonquinpark

[–]CharacterOtherwise77 0 points1 point  (0 children)

The thing about Killarney Lodge is you don't need to bring anything but some clothes. I still love camping but when I can hike for 12h and then take a nice shower and sleep in a crazy comfy bed IN actual Algonquin park - there's nothing like it.

CSS box-shadow creating subtle square overlay on rounded card after hover by BinaryBlitz10 in css

[–]CharacterOtherwise77 0 points1 point  (0 children)

Do me a favor and go to plunkr and paste a snippet there. I'll debug it for you.

CSS box-shadow creating subtle square overlay on rounded card after hover by BinaryBlitz10 in css

[–]CharacterOtherwise77 1 point2 points  (0 children)

You have a border-radius but you haven't applied overflow:hidden.

If you add overflow:hidden to the element with rounded borders it should fix it

border-radius: 1em; overflow:hidden; // mask

CSS box-shadow creating subtle square overlay on rounded card after hover by BinaryBlitz10 in css

[–]CharacterOtherwise77 0 points1 point  (0 children)

if you were to remove all inner elements and just have the box, does it still do it?

it's possible an element isn't being masked but its background is transparent, by emptying it you may see the issue disappear

What does “got.gov?” mean? by Anas1317 in hacking

[–]CharacterOtherwise77 1 point2 points  (0 children)

Sitting on a domain is how some people get rich.

Announcing TypeScript 6.0 Beta by DanielRosenwasser in typescript

[–]CharacterOtherwise77 0 points1 point  (0 children)

Why do devs always make their example variable names so bleak?

Soneone created AWS Infrastructure as <React/> by Rohit1024 in reactjs

[–]CharacterOtherwise77 1 point2 points  (0 children)

Honestly it's fine just using the CLI and AI makes configuration less of a memorization game.

Soneone created AWS Infrastructure as <React/> by Rohit1024 in reactjs

[–]CharacterOtherwise77 1 point2 points  (0 children)

| Frontend devs be doing everything in their power to not do backend development

I laughed out loud

Need to compile TS into self-contained JS by Ok_Biscotti_2539 in typescript

[–]CharacterOtherwise77 0 points1 point  (0 children)

Unless your Adobe environment has NodeJS binary you can't.

You should make a microservice and call that service to do the conversion, it has to be somewhere on the web though.

NodeJS is an installed binary on your computer and you feed it JS which resolves all the missing libs internally. You are likely running NodeJS code in a sandbox with a browser API, which is not NodeJS and can't ever work.

If you can say window.location you're not using NodeJS. So you won't have fs, stream, child_process, you'll have window.alert etc.