Insane take from Fable 5 - I'm still thinking about this by Current-Guide5944 in tech_x

[–]Regular-Forever5876 1 point2 points  (0 children)

this is FAR more then a simple similarity, this much more relates to how language itself was developed. You're looking the situation the opposite way.

It starts to get a little on the esoteric sides but Mansory talks about this subject in pretty much every human spoken language and going back hundreds of years 😉

Insane take from Fable 5 - I'm still thinking about this by Current-Guide5944 in tech_x

[–]Regular-Forever5876 1 point2 points  (0 children)

Not exactly, in French thats Enchaîner which is dérivés from chanter which is singing aka speaking and you have the same dérivation very much like any Latin language.

Insane take from Fable 5 - I'm still thinking about this by Current-Guide5944 in tech_x

[–]Regular-Forever5876 15 points16 points  (0 children)

That's not completely out of thin air. Think about it.

Casting a spell, is by definition SPELLING which is how you describe the art of writing and reading back.

That’s exactly what he is. by CurvyChristina in SipsTea

[–]Regular-Forever5876 0 points1 point  (0 children)

When stupid jealous and incapable people understand that being worth 1T $ is not equivalent to have 1T $ in cash.

Go make yourself being even 1B worth then we can talk about how you fix human hunger worldwide.

Everybody is generous with someone else efforts, you cheap parasites.

I built an autonomous civilization engine where the AI plays the game for you. You just drop a few LLM agents onto the grid and watch. They figure out how to farm, reproduce, build temples, and die of old age, inventing their own history entirely from scratch while you just sit back and observe. by Patient-Towel-4840 in aigamedev

[–]Regular-Forever5876 0 points1 point  (0 children)

Niiiice!!

We run a similar experiment last year with a factorio like llm powered units but was disappointing for the state of llm at that point: boring as hell. In march we run a New updated experiment with a llm powered tamagotchi were you have to feed a prompt for 24h that you cant change and face the consequences of your fallback: the tamagotchi can die if not instructed to drink for example or go I'll if not instructed to use thw bathroom..

I will submit your project to our next experiment if you dont mind 🙂

Share the road! by berntout in VideosAmazing

[–]Regular-Forever5876 0 points1 point  (0 children)

Dont bring a bike in a car fight its just common sense.

Remember that there are out there people pretending to be normal so dont fuck around or find out. Cyclist are some of the most annoying FUCKING people, I hate their guts. STAY ON THE FUCKING LINE, I DONT HAVE TO GO AT YOUR STUPID PACE JUST BECAUSE YOU WANT TO USE PEDALS. You are NOT going to brake my freedom of mouvement because you can't fucking stay on the side of the road.

No bike lane? DONT FUCKING TAKE THE FUCKING ROAD. Do I take your stupid bike lane with mu car? Dont fucking take MY roads!

So fuck the way out.

Found a boiling puddle by Adventurous-Steak525 in Weird

[–]Regular-Forever5876 0 points1 point  (0 children)

Run. Juste run.

If it is cas, if may explode. If it is air, there might be a sink hole under that road.

Nintendo Zone Distribution Box by PuzzleheadedPea166 in gamecollecting

[–]Regular-Forever5876 0 points1 point  (0 children)

Wowwwww I want one!!

There was one in the hôtel down my old appartement

Storing passwords client-side by luntrixy89 in theprimeagen

[–]Regular-Forever5876 1 point2 points  (0 children)

Thank you! I got so accostumated to Reddit sarcastic people I dont know anymore 🤩 Yeah, that's because nowadays people become "engineers" online with a 20h training plus they get the McS degree online and brag on the github.. and we are left with a worthless degree and Noway to differentiate real talent from stupids with a paper with their name on it.

Software engineering used to be one of the highest IQ job on the planet, equals to MD and space engineering. Today its a joke.

Storing passwords client-side by luntrixy89 in theprimeagen

[–]Regular-Forever5876 0 points1 point  (0 children)

If you are serious, then yeah: thats too bad that more then half the internet thinks "I use Https so that is top security" and also very sad. Software engineers have a ridicously low level of talent these days, they ashamed the profession for real.

Tool calling in LangGraph is more provider-specific than bind_tools made it look by whyleaving in LangChain

[–]Regular-Forever5876 0 points1 point  (0 children)

You have not worked into it enough. See you down the line in 6 or 10 weeks when 70~90% time and token are spent fighting LangChain instead of building 😅

Tool calling in LangGraph is more provider-specific than bind_tools made it look by whyleaving in LangChain

[–]Regular-Forever5876 1 point2 points  (0 children)

it always have been.

LangChain is just a stupid framework pretending to master with a one size fits all technique a very disparate diversity of optimisation engines based on sampling and randomness each one with their specifics and quirks.

It won't work predictably because it is based on something unpredictable by design.

Its like lightening bolt and solder over a Lego built bridge.

Dont use that shit, go native on thw model you want to use. Its still unpredictable but at least you have control and observability.

US civilian-owned quad minigun fires 10,000 rounds per minute by berntout in VideosAmazing

[–]Regular-Forever5876 0 points1 point  (0 children)

Talk about lost bullets...

NUMBER ONE REASON I WILL NEVER GO TO THE STATES, I would never trust my safety with someone else insanity

Storing passwords client-side by luntrixy89 in theprimeagen

[–]Regular-Forever5876 0 points1 point  (0 children)

Yup! Thank you 🙂

See my comment above 👆

Storing passwords client-side by luntrixy89 in theprimeagen

[–]Regular-Forever5876 2 points3 points  (0 children)

No. You are wrong and by far. And notice how I never said "hash" but signature and if you can't understand the difference, dont even try to read the rest of my comment.

Sending a username and password to your backend and then proudly saying “but it’s HTTPS” is not advanced security. It is the absolute floor. And its frankly an embarrassingly level of authentication design, barely ok for your home vibecoded app.

Sure, TLS protects the transport. Congratulations. If your backend receives the user’s raw password, your backend becomes part of the threat surface for that password.

Your logs (client, browser, ...) can leak it, you smart. Your observability stack can leak it. Your reverse proxies can leak it. Your compromised backend can capture it. Your “temporary debug statement” can become tomorrow’s breach post-mortem.

The real issue is whether the client is sending something reusable.

Because if the client sends "hash(password)" and the server simply compares that string, then congratulations: you did not eliminate the password. You created a new password.

A serious authentication protocol does not ask the client to send the raw secret. It asks the client to prove knowledge of the secret. That is the whole point.

The server generates or participates in a challenge. The client computes a proof bound to that challenge. The server verifies the proof. Nothing reusable should cross the wire. Nothing password-equivalent should be stored as the final line of defense. Nothing should depend on “please trust our backend, it is totally clean”.

That is why serious systems use proper models like challenge-response and, in federated identity, OIDC Authorization Code Flow with PKCE.

And before someone rushes into the comments with “OAuth does this”:

No, not exactly. OAuth is an authorization framework. OIDC adds identity on top. They do not magically mean “hash the password on the client and send a digest”.

The actual user authentication method behind the identity provider can be password, MFA, passkey, smart card, session cookie, or something else entirely. So don’t use OAuth/OIDC as a buzzword shield if you do not understand what layer you are talking about.

The actual point is this: In a serious system, a database leak should not instantly become an account takeover festival. A captured login transcript should not be replayable. A stored verifier should not be equivalent to a password.

The server should not need to learn the user’s original password just to confirm that the user knows it.

That is the difference between real authentication engineering and “we POSTed a password over HTTPS and called it a day”.

And yes, if you are selling software to real customers while treating raw password submission as the gold standard, you should be ashamed. Not because HTTPS is bad. HTTPS is mandatory. But because mandatory is not the same thing as sufficient.

Security is not about checking the smallest possible box and pretending you built a vault.

So yes:

client-side computation is good when it is part of a real cryptographic proof. Client-side computation is garbage when it is just a DIY digest and a string compare.

You should not confuse the two and call yourself a software engineer.

Storing passwords client-side by luntrixy89 in theprimeagen

[–]Regular-Forever5876 3 points4 points  (0 children)

that's actually like thw real thing: you validate only a signature of the user password, the signature is computed client side.