Abhinav SinghforMicroservice and it's componentsabhistrike.hashnode.net·Feb 15, 2023The Magic of Consistent Hashing: A Secret Weapon for Efficient Load BalancingConsistent Hashing is one of the famous terms used in system design. Is it used in many other important concepts like load balancing, sharding or any other uniform segregation distribution. Let's explore why it is so important and why it is used agai...Discuss·81 likes·94 readsconsistent hashing
Odewole Babatunde SamsonforBigSam Blogbigsam.hashnode.net·Dec 17, 2021Blockchain and Smart-contract explainedYou must have been hearing about Blockchain and Smart-contract. In this article, I will be explaining what these technologies are about . Overview What is blockchain? What Is Distributed Ledger Technology (DLT)? What Is a Hash Function? How does H...Discuss·71 likes·816 readsSmart Contracts
Akshat SharmaforCarbon Coffeecarboncoffee.hashnode.net·Jan 12, 2021Hash Table in Python<- Go Back to Index What is Hash Table? A hash table is a data structure that implements an associative array abstract data type, a structure that can map keys to values. In other words, we can say that the Hash Table is a data structure that stor...Discuss·36 likes·299 readsHashing
Ganesh Jforcodemuscle.hashnode.net·Apr 25, 2023Locked and Loaded: The Importance of App Authentication in Today's Digital WorldAuthentication: Authentication can be very discouraging to build as a developer keeping various security features in mind. It is ideal to use or build authentication systems that don’t depend on 3rd party providers at all. Custom-building authenticat...Discussauthentication
Harsh MangeforBit Fetchharshmange.hashnode.net·Apr 14, 2023What is Database Indexing by Hash Indexing approach?Hash indexing is a database indexing technique that uses a hash function to compute an index value for each record in a table. The index value is used to locate the record quickly when a search is performed. In this answer, we will explain the hash i...DiscussDatabase IndexingDatabases
Deepak Sonifor🌗 Mooon Weblogmooon.hashnode.net·Mar 21, 2023Password Hashing - A must known-concept for developers!Have you recently created an account on an online platform? If so, do you think those websites store your passwords as-it-is in their databases? The answer is probably not. In today's technological era, this is a very silly mistake a website can do. ...Discuss·1 like·51 readsHashing
Bawantha WickramarachchiforBawantha Wickramarachchibawanthaw.hashnode.net·Mar 21, 2023Encryption vs HashingIn the world of cybersecurity, encryption, and hashing are two terms that are often used interchangeably. However, they are not the same thing and serve different purposes. In this blog post, we will explore the differences between encryption and has...Discuss·29 readsencryption
Priyansu SahooforPriyansu's blogpriyansu1.hashnode.net·Mar 15, 2023Load Balancing in 5 Min.LoadBalancing image Let's say there is an algorithm running on the server. What is Server?A Server is which servers the request. When a person is connecting through a mobile/PC to a server, they are technically sending a request. Then the algorithm...Discuss·2 likes·40 readssystem-designLoad Balancing
Vivek KhatriforVivek Talks Techvivektalkstech.hashnode.net·Feb 26, 2023Detecting Duplicate ContentDetecting and classifying content as spam or duplicate poses a significant challenge for social media firms due to the vast amount of data published every second. However, limiting the number of posts, follows, and messages appears to be the simplest...Discuss·44 readsHashing
Abhinav SinghforMicroservice and it's componentsabhistrike.hashnode.net·Feb 15, 2023The Magic of Consistent Hashing: A Secret Weapon for Efficient Load BalancingConsistent Hashing is one of the famous terms used in system design. Is it used in many other important concepts like load balancing, sharding or any other uniform segregation distribution. Let's explore why it is so important and why it is used agai...Discuss·81 likes·94 readsconsistent hashing
David IfebuemeforDavid Ifebueme's blogdavidifebueme.hashnode.net·Feb 12, 2023Solution To The Rotohash Challenge (bountycon 2022)Note: This solution is provided (with permission) by Sudip Shah and in his exact words and methodology. Enjoy! The Challenge: Challenge Lets see what the script.py contains : script.py As previously mentioned about programming, I didn’t properly ...DiscussHashing
Emre AslanforEmre Aslanemreaslan.hashnode.net·Feb 6, 2023A Deep Dive into the Digital Signatures, Encryption, and Hash FunctionIn an electronic world, digital signatures are used to sign documents. This signing process is performed by applying an encryption algorithm to the document. This article will generally touch on symmetric and asymmetric encryption processes, how the ...Discussdigital-signature
Guru Prasadforrugiguru.hashnode.net·Jan 23, 2023What is Hashing, Hash Table and Hash Function?Hashing is a technique in which the keys, values are stored in Hash Table using a function known as Hash Function. What is Hash Table? In the Hashing technique, we require some kind of storage (mostly we use arrays) to store the values and that stora...DiscussJava