0
votes
2answers
10 views
iPhone Core Data saving multiple items at once random behavior?
Hello,
I have an application that reads an rss feed, parses the xml and adds it to my database using Core Data (this is so the user can see the feed even if no internet connection is available) this …
0
votes
1answer
47 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
115 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
9answers
106 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.
…
1
vote
5answers
88 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 …
8
votes
7answers
156 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 …
0
votes
4answers
60 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
3answers
138 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;
…
-2
votes
0answers
61 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
4answers
72 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
100 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:
…
0
votes
7answers
100 views
How to generate random password with PHP?
Or is there a software to auto generate random passwords?
3
votes
5answers
289 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 …
1
vote
1answer
53 views
Alerternative to MySQL Order By Rand()
I've read about a few alternatives to MySQL's ORDER BY RAND() function, but most of the alternatives apply only to where on a single random result is needed.
Does anyone have any idea how to …
