0
votes
1answer
41 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 …
0
votes
3answers
120 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;
…
3
votes
3answers
111 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
84 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.
…
3
votes
8answers
520 views
What’s the efficiency and quality of this shuffling algorithm?
This recent question about sorting randomly using C# got me thinking about the way I've sometimes shuffled my arrays in Perl.
@shuffled = sort { rand() <=> rand() } @array;
The proposed …
7
votes
7answers
136 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
81 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
58 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
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 …
78
votes
31answers
7k views
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7
what is simple solution
what is effective solution to less minimum memory and(or) cpu speed?
5
votes
7answers
2k views
C++ random float
How do I generate random floats in C++?
I thought I could take the integer rand and divide it by something, would that be adequate enough?
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 != …
-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!
3
votes
5answers
287 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 …
