This tag is for questions pertaining to random numbers, whether pseudo random or truly random.
1
vote
1answer
22 views
Using semaphore in C
This is my first time using semaphores and I was wondering if I implemented them to the best of their abilities in my code....
...
4
votes
1answer
48 views
Generating XKCD passwords
Obviously, everyone should use a password manager to generate and store long unique random strings of characters for the vast majority of their passwords. However, one still needs to memorize a master ...
0
votes
2answers
58 views
Random Walk simulator seems slow, are there ways to optimize my code?
I'm trying to write a short random walk simulator in which an agent has a 50% chance on each "round" to either move toward x or back to its initial position. If the agent is already at its initial ...
-1
votes
0answers
20 views
Normal Distribution Generator Confusion - c++ [closed]
I have been assigned a project to make a simulation of knights fighting dragons and now that I am finished I have to present my project. The problem I have is with my understanding of engines and ...
3
votes
2answers
150 views
Heightmap generation using midpoint displacement
I am writing a program to generate a height map following the midpoint displacement algorithm (somewhat similar to diamond-square).
I'm at the point where I have a recursive program that paints the ...
3
votes
2answers
152 views
“Guess my Number” game in Python (2.7.9)
First time posting to Code Review. Just looking to get some advice on how I can write better code.
I found the following exercise for a "Guess my Number" game on DaniWeb, but the linked source code ...
3
votes
1answer
50 views
Portably generate uniformly random floats from mt19937 output
My goal is to generate a sequence of random float from a seeded random generator. The sequence should be the same on any machine / any compiler -- this rules out ...
-2
votes
0answers
25 views
Assigning distinct random numbers to variables [closed]
I'm attempting to generate non repeating random numbers between 1-5, 1-10, 1-20, etc. I'm on to the Fisher-Yates Shuffle but I'm not sure I've implemented it in the best way. My plan is to associate ...
3
votes
1answer
26 views
Python Weighted Object Picker
I've designed a class ObjectPicker that can be given objects and weights. Objects can be picked randomly out of the ...
9
votes
4answers
2k views
Randomly generate spelling mistake in string
My code will generate a spelling mistake inside of a string 50% of the time.
It will retrieve a letter from a random index in the string like, "t" and then duplicate that letter like, "tt" and store ...
3
votes
2answers
86 views
Simple function to generate a list of letters
I would like get some suggestions for improvement of this function, and alert me about any dodgy practices that you find.
I have been trying to learn python for a short time now and I would like to ...
5
votes
2answers
71 views
Randomized Lighting with Python
I use this to automate the lights in my home while I am away at night (simulating presence). The scheduling of when this runs is handled by my home automation software (Indigo Domotics).
I'm open to ...
2
votes
2answers
33 views
Choose a color with probability proportionate to its weight in a group of colors
Input: An array of colors with weights. e.g [['red', 10], ['blue', 20], ['green', 30]]
Output: A random color from the array, based on it's proportion to the other ...
2
votes
2answers
53 views
Random positioning and movement of a rabbit on a table
I was inspired by this:
If you would put a rabbit randomly on a circular table with radius r=
1 meter and it moves 1 meter in a random direction, what is the
chance it won't fall off?
I ...
2
votes
1answer
49 views
Sampling with weighted probabilities
In an exam question I need to output some numbers self.random_nums with a certain probability self.probabilities:
I have ...
3
votes
2answers
62 views
Adding an 'enemy' to a game (with randomized properties)
I'm working on a game using the now abandoned Famo.us Javascript framework.
I have the game in a running prototype and I'm building with Cordova and running it on an iPhone 6 using PhoneGap.
There ...
2
votes
2answers
127 views
Beginning dice game
This is my first dice game and I have spent countless hours working on it, yet it is still very basic. I was wondering if anyone could spare the time to suggest improvements.
...
4
votes
2answers
54 views
Normalized random position generator
I place various divs on screen by adding random x and y positions successively normalized with this function. My question is, how well is it written? Can I improve it? If so, then how?
I am worried ...
5
votes
1answer
54 views
Creating cover traffic by calling random urls - Javascript loop to decrement float
This is a for-loop which runs once for each step with i>1 and maybe for ...
3
votes
1answer
53 views
Generate voxel terrain with Perlin Noise
For my chunk generator for my game, it currently uses a triple nested loop, which seems very inefficient. It also seems like I could cut down a lot of code in the function somehow. Does anyone have ...
6
votes
4answers
923 views
Random string generator
I decided to make a random string generator for fun, and it works for the most part. Since I'm an amateur at programming, I thought I would post the code to get some feedback on it, and hopefully ...
5
votes
3answers
130 views
Simulation for rolling dice in X-Wing
I've recently started playing the X-Wing Miniature game, and there is quite some math behind some of the dice rolls, as they are affected by many abilities and so on. Manually calculating these is ...
5
votes
1answer
97 views
CIS194: Risk!-style “battles”
After reading LYAH and using RWH as a reference, I've been doing the exercises from CIS194, which is often suggested to beginners on irc://freenode.net/#haskell and ...
6
votes
2answers
44 views
Creating a list of new areas for patches of conserved land within a watershed
I'm writing code to create a list of new areas for patches of conserved land within a watershed based on the current size distribution of conserved land patches that are in the watershed now.
I'm ...
7
votes
2answers
73 views
Simple command-line password generator
I'm very new to Haskell, I've read most of learnyouahaskell.com and played around with some simple things, but this is probably the most 'complicated' bit of Haskell I've written so far. I have an ...
8
votes
2answers
85 views
Random jagged int array generator
I've been working on learning about irregular arrays and thought making a generator such as this one would be a good exercise in applying what I have learned.
The following class generates an array ...
1
vote
2answers
72 views
Random uniqueID for each ID SQL
How can I improve this code? I wanted to know if there's a possibility to remove the for loop, and UPDATE a different ...
10
votes
4answers
843 views
Generate set of random numbers and remove lowest
I'm learning some Python with my kids, and we're making a program to generate D & D characters from user input.
One portion of the code is to generate stats, which are a set of six numbers where ...
12
votes
4answers
956 views
Rubik's cube timer & scrambler
This uses a linked list to store the data. I used a linked list as it's the only type of data structure that I know currently. Using chrono, I can get microseconds ...
3
votes
1answer
189 views
Function to generate a UUID
I am trying to prevent CSRF for my login page (linked from here), and for this I am going to use a random token generator to create a UUID for the session.
The function that I have so far is as such:
...
2
votes
2answers
192 views
C program to generate Seed programs from statically defined Befunge code
My program takes static input, and then number crunches for a few hours. I am currently using Macros, but is there a better, more "user friendly" way to do this without losing on performance.
I have ...
5
votes
2answers
248 views
Mapping & Sorting Randomly Generated Numbers
Below is the assignment I was given and the coding is what I have came up with. I would appreciate criticism on how I did and on ways to have gone differently about it.
You want to number your ...
6
votes
1answer
293 views
Simple random generator
Based on this question, I have made a simple program to print a sequence of random numbers. The program seems to run fine, but I would like to know if my implementation is correct and how I can ...
4
votes
1answer
54 views
Coin flips and Dice rolls in a stored procedure
I saw a post in chat a few days ago, of what I thought was an interesting (albeit fairly simple) statistical challenge:
By @skiwi:
If I shoot once with 50% chance of target A and 50% of target B, ...
3
votes
2answers
113 views
14
votes
3answers
687 views
5
votes
2answers
109 views
7
votes
2answers
366 views
Three-number lottery simulator
Please let me know how I can make it better, especially with avoiding repetition without the need to replace the user guesses.
...
12
votes
3answers
1k views
Seed std::mt19937 from std::random_device
To fill you in: Many people seed their Mersenne Twister engines like this:
std::mt19937 rng(std::random_device{}());
However, this only provides a single ...
6
votes
2answers
57 views
Summing random numbers in parallel
I am playing around with parallelization in Java and am trying to see how to squeeze out more performance on my multi-core box. My machine has 6 physical cores, 12 with hyperthreading.
However, with ...
5
votes
2answers
215 views
Random Engine - follow up
I have ported the code from my previous question "Generate a random numbers class" to C++14 and made a few modifications.
How can I improve it further?
...
7
votes
1answer
85 views
Random number generator initialisation
For a server-side Java application I want to have a random number generator. I'm using the ISAAC algorithm from Apache Commons Math 3 because it is both cryptographically strong and fast. I have ...
6
votes
3answers
327 views
Generate valid random rgb color strings
I'd want to see if is possible to optimize performance even further of the following generate color method.
...
4
votes
3answers
670 views
1
vote
1answer
62 views
5
votes
2answers
236 views
Basic random password generator
I'm trying to pick up some Haskell skills so thought I'd write a random password generator to get to grips with using IO. It was far trickier than I expected and I ...
5
votes
3answers
129 views
Python Turtle screen saver
Leon asked a question which got closed both here and at Stack Overflow, but I kind of liked the idea, so I implemented a working version of his code, which I now want reviewed.
With regards to Leon's ...
4
votes
1answer
582 views
Java Dice Roller with GUI
Three days ago I wrote about a Java Dice Roller I wrote. I've now added a GUI to that program. Here it is:
DiceRollerGUI.java:
...
5
votes
2answers
2k views
Java Dice Roller
I've written a basic dice program in Java which takes a number of faces then randomly selects a number within that boundary. Here is the code:
...
0
votes
1answer
52 views
Procedural generation of an infinite map made up of 1's and 0's
This is my function to procedural generate an infinite random map of 1's and 0's it only calculates what you can see at the time and when the view moves it calculates the next rows.
Complexity is the ...