Chinmaya Meherckmeher.hashnode.dev·Oct 29, 2024Numpy Random: A Key Tool for Data Science ApplicationsIntroduction to NumPy NumPy, short for Numerical Python, is a foundational Python library essential for numerical and scientific computing. It introduces a powerful data structure, the array, which is more efficient than Python lists for handling lar...Data Science
Rahul R KatarkiforCOPS IIT BHUblogs.copsiitbhu.co.in·Oct 9, 2024Random Numbers: Are They Truly Random?Imagine you are at a lottery shop and have to buy 1 ticket. The owner of the shop randomly picks a number between 1 to 1000 and the person with that ticket wins the lottery. Suppose he uses this following code to pick the random number. #include <std...6 likes·223 readsProgramming Blogs
Dick HardtforHellō Worldblog.hello.dev·Jun 30, 2024New Hellō IdentifiersUpdated July 1, 2024 - we will continue to provide UUIDv4 identifiers to our existing customers. Identifiers are a foundational component of any computing system, and key to an identity service. At Hellō, we have: external identifiers created by oth...1 like·290 readsnanoid
Alvison Hunteralvisonhunter.hashnode.dev·May 20, 2024Exploring the Magic of Python's Random ModuleHowdy, dear readers! Have you ever wondered how to create a deck of cards and shuffle them or how to generate random numbers for a game? Well, if you had, and you would like to learn about it, you’re in the right place! In this article, we’ll explore...Python 3
Keshav Carpenterblog.keshavcarpenter.tech·Mar 19, 2024What to Use: Random or SecureRandom to Generate Random Object in Java?When it comes to generating random numbers in Java, developers often face the dilemma of whether to use Random() or SecureRandom(). In this post, we'll delve into the differences between the two and explore why opting for SecureRandom() might be the ...Java
Balkishanbalkishanmblog.hashnode.dev·Sep 14, 2023Unlocking the Mystery of Pseudo-Random Number Generators: How Computers Create the Illusion of RandomnessToday, I was studying about random numbers generators in javascript then suddenly my mind got strike-out by a question: Since a computer is a deterministic machine, it works on different algorithms that are defined and do not contain any randomness, ...33 readsComputer Science
Christoph Bilz (HamsterIdea.tech)hamsteridea.hashnode.dev·Aug 23, 2023How to make real randoms with SQLFrom time to time I need random numbers produced in SQL and packed as an array. This is how it goes: --PostgreSQL --Random filled real Arrays: --Brainstorm: -- create a function who generates a random real value between low and high: CREATE OR REPLA...DatabasePostgreSQL
Billy JitsuforDeveloper DAO Blog | Web3 Tutorialsblog.developerdao.com·Aug 23, 2023Enhancing NFTs with Random Numbers and DelegationWhen NFT projects become stale, the community asks, "Can the devs do something?" So, I wanted to show a fun way anybody can bring value to an existing project. My idea was to take the Lego approach, which means building something new with existing bl...176 readsrandom numbers
Sven Willhauksvensblog.hashnode.dev·Jul 1, 2023Day 10 of learning JavaScript: Generate random numbers and random cardsToday I learned how to generate random numbers in JavaScript. I needed to know this so that when every round of Blackjack starts, the numbers are not the same but always different. There are a few important things I have learned: Math.random() // cre...42 readsJavaScript
Atul Kushwahacoderatul.hashnode.dev·Jun 20, 2023creating own RANDOM number generatorIntroduction: Have you ever wondered how the random number module works in programming? I was curious about it myself, so I embarked on a journey to create a random number generator using time, different time zones, milliseconds, and some mathematica...1 likerandom numbers