Tagged Questions

0
votes
1answer
22 views

Cleaner PHP Random Text

Playing around with generating text randomly with each page refresh using php. Is there a cleaner way to approach this? Also, can this be done with jquery? <?php $random_text = array("Random Text …
3
votes
3answers
105 views

How random is urandom?

In Linux, just how random is /dev/urandom/? Is it considered safe? Also is it possible to get a stream of 1's?
4
votes
8answers
82 views

ORDER BY RAND() alternative

I currently have a query that ends ORDER BY RAND(HOUR(NOW())) LIMIT 40 to get 40 random results. The list of results changes each hour. This kills the query cache, which is damaging performance. …
7
votes
7answers
130 views

Generating sorted random ints without the sort?

Just been looking at a code golf question about generating a sorted list of 100 random integers. What popped into my head, however, was the idea that you could generate instead a list of positive …
1
vote
5answers
80 views

Returning items randomly from a collection

I've a method which returns a generic list collection(List) from the database. This collection has got order details i.e., Order Id, order name, product details etc. Also, method the method returns a …
0
votes
4answers
56 views

Basic image rotation with jQuery

I'd like to test banner (two css background images) and rotate them randomly on each page reload. Is it possible to achieve something like that without using any plugins? I just need to rotate two …
0
votes
3answers
108 views

boost::random generate the same number every time

main .cpp #include "stdafx.h" #include "random_generator.h" int main ( int argc, char *argv[] ) { cout.setf(ios::fixed); base_generator_type base_generator; …
0
votes
3answers
30 views

How to order data randomly

I have the following MySQL. I want to pull the data in random order. Could anyonet teach me how to do it please. $Q = $this->db->query('SELECT P.*, C.Name AS CatName FROM products AS …
0
votes
4answers
69 views

Uniform random (Monte-Carlo) distribution on unit sphere.

Hi! I need a clarification with algorithm generating random values for my pet ray-tracer. I emit rays from one point. And I have the problem with distribution of these rays: I need the distribution to …
1
vote
2answers
95 views

Fast random selection algorithm

Given an array of true/false values, what is the most efficient algorithm to select an index with a true value at random. A sketch simple algorithm is a <- the array c <- 0 for i in a: …
3
votes
5answers
286 views

Statistical mathematics issues

Hello, I'm developing a Texas Hold 'em hand-range equity evaluator, which evaluates hand-distributions with Monte Carlo -simulation. I've faced two annoying problems which behaviors I cannot give any …
-2
votes
0answers
60 views

Random Testimonial Generator [closed]

Anyone familiar with a clean, simple javascript (.xml file?) Random Testimonial Generator? Figured I would check here first to see what the top-programmers suggest!
0
votes
7answers
99 views

How to generate random password with PHP?

Or is there a software to auto generate random passwords?
4
votes
4answers
114 views

How to randomly sort (scramble) an array in Ruby?

I'd like to have my array items scrambled. Something like this: [1,2,3,4].scramble => [2,1,3,4] [1,2,3,4].scramble => [3,1,2,4] [1,2,3,4].scramble => [4,2,3,1] and so on, randomly
2
votes
6answers
149 views

Linq2sql: efficient way to get random elements with weight?

Byt lets say I have an integer weight where i.e. elements with weight 10 has 10 times higher probability to be selected than element with weight 1. var ws = db.WorkTypes .Where(e => e.HumanId != …

1 2 3 4 5 27 next
15 30 50 per page