scoop - command line installer
Install Windows software from the command line
Mar 5, 20213 min read121

Search for a command to run...
Install Windows software from the command line

Install your favorite software without the hassle

Storing your users' passwords securely is critical. But still, you can find code like $hash=md5($_GET['password']) in many code bases. So, what's wrong about it? Using md5 to hash passwords While it's good to see use of a hash in the code - instead o...
![What's wrong with md5($_GET['password'])?](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1610707270655%2FuxiRAU36B.png&w=3840&q=75)
When developing a web application, you often have to store user-generated entities such as user profiles, photos, posts and videos. Chances are you store them in a database, using an integer ID, generated by a sequence. So, for example, each newly po...
