Hello, World!
I am Manish Sundriyal, I use this space to share my content.
Recent Snippets
October 26, 2020
October 25, 2020
October 23, 2020
June 13, 2020
Recent Blogs
Dijkstra's Algorithm
Find the shortest paths from source vertex to all the vertices of the graph. We have to find the shortest paths from a starting vertex to all the other vertices, here shortest path means sum of weights of all the edges in the path (cost) should be minimum.
What’s new in React Router V6
Version 6 of React Router is in alpha right now, and we can expect some major changes in its upcoming release. Installation npm install react-router@next react-router-dom@next
A quick way for hashing passwords using Bcrypt with Nodejs
When I first came across the bcrypt module, I felt that it was fun and easy to use it for hashing passwords. According to Wikipedia “bcrypt is a password hashing function designed by Niels Provos and David Mazières, based on the Blowfish cipher”.