@JohnKrysinsky I also love that football players are assumed to be our best "athletes." (Whatever that term means.) It's an easy claim to make when nobody else plays your sport.
@JackMac The idea that our best "athletes" (however defined) are simply choosing a different sport to the detriment of US soccer is absurd. Anyone who has played or coached in our soccer hierarchy knows that it's a much more nuanced problem.
Great question.
When you store passwords, you don't store them directly (that would be unsafe). Instead, you "hash" them. It is hashing that turns "password123" into something like "a7f8k2m9x4".
The problem is, if two people use "password123", they both get the same hash result. Hackers know this and have giant cheat sheets that say "if you see a7f8k2m9x4, the original password was password123."
The solution to this is "salting". Before hashing the password, you add some random junk to it.
So for User A, you might add "xyz" to their password, making it "password123xyz" before hashing.
For User B with the same password, you add different junk like "abc", making it "password123abc".
Now when hashed, they look completely different.
Benefits of salting is that even if a million people use "password123", every single one looks different in your database.
Hackers have to work much harder to crack each password individually
It's finally here! serversideup/php v4 is now stable ๐
๐ Over a year of work
๐ FrankenPHP & Laravel Octane support
๐ค LLM integration on our docs
๐ค 13 new contributors
โค๏ธ All open source
Run PHP and Laravel anywhere you want.
Now go build awesome stuff, Internet. ๐
I think we, as Laravel/PHP community, have a problem.
I don't see many new/young devs starting with Laravel.
I also heard the same topic expressed by Taylor, Jeffrey, Nuno in podcasts.
Question: what can I/we do to promote PHP/Laravel to outsiders?
Let's brainstorm.
Need a document scan from a repository in NYC or Boston? I know itโs hard to pull the trigger at $65 a pop. But you should know that your hard earned cash is landing in the pocket of some very talented and deserving grad students.
Also, 10% off with coupon code SOCIAL10 might ease the pain a bit.
#research #history #humanities #dh #genealogy #journalism #archives
Enhance your terminal experience in @code by enabling this one setting โ๏ธ
The terminal.integrated.suggest.enabled setting, currently in preview, surfaces rich completion support for your terminal.
I worked at BlackBerry (RIM at the time) in 2009.
The real reason for the downfall was the following.
Consumers wanted apps, but BlackBerry had two different customers: enterprise/gov and consumers.
Enterprise/gov customers cared a lot about security, of which BB was the best.
Consumers, aka end users, cared about apps.
BB was very cautious about the apps it brought onto the platform, among various other consumer-friendly products and features.
They should have separated into two subsidiaries, one phone focused on B2B and the other on the consumer experience.