Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
4answers
6k views

How to load db:seed data into test database automatically?

I'm attempting to use the new standard way of loading seed data in Rails 2.3.4+, the db:seed rake task. I'm loading constant data, which is required for my application to really function correctly. ...
22
votes
3answers
752 views

What's the benefit of seeding a random number generator with only prime numbers?

While conducting some experiments in Java, my project supervisor reminded me to seed each iteration of the experiment with a different number. He also mentioned that I should use prime numbers for the ...
15
votes
7answers
15k views

How to create my own JavaScript Random Number generator that I can also set the seed

The JavaScript Math.random() function returns a random value between 0 and 1 (automatically seeded based on the current time (similar to Java I believe)). However I'd like to make a more robust ...
11
votes
7answers
241 views

Is there an alternative to using time to seed a random number generation?

I'm trying to run several instances of a piece of code (2000 instances or so) concurrently in a computing cluster. The way it works is that I submit the jobs and the cluster will run them as nodes ...
11
votes
7answers
11k views

What is the best way to seed a database in Rails?

I have a rake task that populates some initial data in my rails app. For example, countries, states, mobile carriers, etc. The way I have it set up now, is I have a bunch of create statements in ...
9
votes
2answers
220 views

How can I store the state of the pseudo-random generator in Perl?

Is there a way to store the current state of the built in pseudo-random number generator in Perl so that when my program is run again, it can pick up the sequence from where it left off rather than ...
8
votes
2answers
366 views

differences between numpy.random and random.random in Python

I have a big script and I am new in Python. I inspired myself in other people's code so I ended up using the numpy.random module for some things (for example for creating an array of random numbers ...
8
votes
4answers
364 views

Reinventing The Wheel: Random Number Generator

So I'm new to C++ and am trying to learn some things. As such I am trying to make a Random Number Generator (RNG or PRNG if you will). I have basic knowledge of RNGs, like you have to start with a ...
6
votes
3answers
154 views

generating random numbers in C++ using TR1 /dev/random (resilient to <1 second runs)

I would like to generate uniform random numbers in C++ between 0 and 1, in a way which does not use the standard rand() and srand(time(NULL)) method. The reason for this is that if I run the ...
6
votes
1answer
592 views

Best way to add seed to Perlin noise?

I'm trying to implement 2D Perlin noise generation in C++, and some implementations I found use no seed at all (here, here or here). Other implementations take a seed value to get different noise ...
6
votes
4answers
209 views

Java Random, little change in seed causes only little change in output

While making a map generator in Java I found a rather unnerving problem with their random number generator, to specify, when two RNGs have very similar seeds (differing in small integers) their first ...
6
votes
2answers
987 views

Seeding file uploads with CarrierWave, Rails 3

I'm trying to seed a database in Rails 3 with images using CarrierWave, however nothing I try seems to work short of having to upload them all by hand. pi = ProductImage.new(:product => product) ...
6
votes
5answers
3k views

Prevent Rails test from deleting seed data

I am using seeds.rb to populate some State model reference data: State.create :name => 'Alabama', :abbreviation => 'AL' State.create :name => 'Alaska', :abbreviation => 'AK' # ... ...
5
votes
5answers
346 views

Randomize a PHP array with a seed?

I'm looking for a function that I can pass an array and a seed to in PHP and get back a "randomized" array. If I passed the same array and same seed again, I would get the same output. I've tried ...
5
votes
2answers
401 views

Would you recommend JavaScript for GNOME desktop apps?

With the arrival of the new GNOME Developer Center I stumbled across JavaScript bindings for the gobject libraries. Now I would love to read a comment from an expert if he (or she) would recommend / ...
5
votes
4answers
805 views

How can I use Factory Girl in db/seeds?

it's possible to do this?, how you can do?
5
votes
3answers
2k views

Python's random: What happens if I don't use seed(someValue)?

a)In this case does the random number generator uses the system's clock (making the seed change) on each run? b)Is the seed used to generate the pseudo-random values of expovariate(lambda)?
5
votes
4answers
777 views

Random distribution of data

How do I distribute a small amount of data in a random order in a much larger volume of data? For example, I have several thousand lines of 'real' data, and I want to insert a dozen or two lines of ...
4
votes
7answers
2k views

c++ generate a good random seed for psudo random number generators

I am trying to generate a good random seed for a psudo-random number generator. I thought I'd get the expert's opinions. let me know if this is a bad way of doing it or if there are much better ...
4
votes
5answers
3k views

Ruby on Rails - is seeding data with fixtures dangerous?

I have fixtures with initial data that needs to reside in my database (countries, regions, carriers, etc.). I have a task rake db:seed that will seed a database. namespace :db do desc "Load seed ...
4
votes
5answers
769 views

Issues with seeding a pseudo-random number generator more than once?

I've seen quite a few recommendations for not seeding pseudo-random number generators more than once per execution, but never accompanied by a thorough explanation. Of course, it is easy to see why ...
3
votes
2answers
36 views

How to extend functions to Random class

I'm trying to extend the functions from a Random class. public static class RandomExtensions { public static void NextEven(this Random rnd, int min, int max) { // ... } ...
3
votes
5answers
72 views

Java Random and Seed

Is there a way to generate a seed out of a sequence of numbers? For example if java produces the pseudorandom sequence: 9 3 2 5 6 by using 23 as a seed, how can I do the inverse? e.i. getting 23 out ...
3
votes
3answers
58 views

How can I produce a pseudorandom pattern from X/Y coordinates deterministically?

I'm writing a shader which occasionally makes a point sparkle on a 2D map. (The "sparkle" is simply a brighter-colored pixel.) I'd like the sparkled blocks to appear randomly and uniformly distributed ...
3
votes
3answers
92 views

How to ensure uniqe seeds for the RNG on subsequent process launches?

Summary: I need a simple self-contained way to seed my RNG so that the seed is different every time the program is launched. Details: I often need to run the same program (which does calculations ...
3
votes
2answers
384 views

'RandStream' is not defined in MATLAB 7.6.0.324?

I am trying to use RandStream in MATLAB 7.6.0.324 as below: randst = RandStream('mrg32k3a', 'Seed', 0); Apparently, RandStream is not defined on MATLAB 7.6.0.324 and I can not find a documentation ...
3
votes
2answers
202 views

Which procedure is more secure for encryption using Password and Seed

I am designing a procedure and file format for the encryption application. I came to a point when I need to make a decision regarding the method/workflow of the encryption. I can't make up my mind on ...
3
votes
2answers
561 views

Rails: Make this rake task aware that it is in the test environment

I have the following rake task defined in my lib/tasks folder: namespace :db do namespace :test do task :prepare => :environment do Rake::Task["db:seed"].invoke end end end ...
3
votes
3answers
248 views

how to query seed used by random.random()?

Is there any way to find out what seed Python used to seed its random number generator? I know I can specify my own seed, but I'm quite happy with Python managing it. But, I do want to know what ...
3
votes
2answers
220 views

How are “out parameters” represented for Seed JavaScript GObject bindings?

I've just started using Seed for development. One thing that Seed's web page mentions is that it "Maps C-isms (say, out arguments, or enums) to things that make sense in JavaScript." Unfortunately, I ...
3
votes
2answers
141 views

What can I do with Seed?

I found Seed, which is basically a JavaScript environment and binding for programming GTK+. Are there any limitations compared to using e.g. C and C++? Are there any major speed concerns?
3
votes
1answer
388 views

Creating a torrent file with monotorrent: How do I add webseeds?

I have been looking at monotorrent and while investigating the whole bittorrent thing I saw that a torrent file may also specify web seeds, which are basically standard HTTP downloads but which can ...
3
votes
3answers
786 views

Seeding a restful_authentication user in seeds.rb

I'm pretty sure I understand how seeding work with respect to seeds.rb, but I can't seem to use it to stick a restful_authentication User object into the database. User.create(:login => 'admin', ...
3
votes
4answers
3k 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
2answers
1k views

Using a method in seeds.rb in Ruby On Rails

I am trying to add a method to my seeds.rb so that I don't have to write a bunch of verbose code. However, depending on the placement of the create_deliverable method I get one of two error messages ...
3
votes
3answers
276 views

What is a good hashing algorithm for seeding a prng with a string?

I am looking for a hashing algorithm that produces a 31/32 bit signed/unsigned integer as a digest for a utf8 string with the purpose of using the output for seeding a prng, such as a ...
3
votes
3answers
465 views

What is a cross platform way to select a random seed in Java?

After reading this answer: http://stackoverflow.com/questions/136474/best-way-to-pick-a-random-subset-from-a-collection#136513 It got me wondering, how does one pick a random seed in Java? And don't ...
2
votes
5answers
172 views

rand function returns same values when called within a single function c++

I'm a c++ newbie and I'm stumped on this. I need to call this function in my main function three times but each time it gives me the same result i.e. pull_1, pull_2, pull_3 are the same. What do I ...
2
votes
1answer
645 views

Execute sql script inside seed.rb in rails3

I want to execute this sql script inside my seed.rb LOAD DATA LOCAL INFILE '/home/list-38.csv' INTO TABLE list FIELDS TERMINATED BY ':' LINES TERMINATED BY '\n' (email,name,password); I checked ...
2
votes
1answer
160 views

writing spec for seeds.rb

In a project, the seeds.rb is getting complicated. We have a seeds/ directory with yml files containing data to be loaded. It should work on re-runs and it should not duplicate records (this is ...
2
votes
3answers
180 views

Generating Random numbers with a vector of integers as seed (java)

I want to generate reproducible random numbers representing quantities at different points in 3 dimensional space, e.g. double draw = rand(int seed, int x, int y, int z) I want the same inputs to ...
2
votes
1answer
284 views

Best practice when using seed.rb

I'm having some difficulties understanding how to use the seed.rb script in rails. So far, I've used it to populate my database every time i deploy my application. Like this. seed.rb ["Video", ...
2
votes
3answers
224 views

Monte carlo on GPU

Today I had a talk with a friend of mine told me he tries to make some monte carlo simulations using GPU. What was interesting he told me that he wanted to draw numbers randomly on different ...
2
votes
1answer
381 views

Rails 3: Multiple has_one associations & seeding

I'm working with a data concept that Rails doesn't seem to do great with - a Route has two (and only two) Airports. I finally figured out how to hard-code my foreign keys so that they would be ...
2
votes
1answer
549 views

How to avoid the validation, callbacks and 'attr_accessible' effects during the seeding process using Ruby on Rails 3?

I am using Ruby on Rails 3 and I am trying to seed data in my application database. In 'RAILS_ROOT/models/user.rb' I have: class User < ActiveRecord::Base attr_accessible #none validates ...
2
votes
1answer
481 views

Split seeds.rb into multiple sections?

I'd like to split my seeds.rb file into multiple sections for ease of maintenance; seed all the A's in a.rb, the B's in b.rb, etc. The separate files are located in the db/ directory with seeds.rb. ...
2
votes
1answer
731 views

How to db:seed a model and all its nested models?

I have these classes: class User has_one :user_profile accepts_nested_attributes_for :user_profile attr_accessible :email, :password, :password_confirmation, :user_profile_attributes end class ...
2
votes
2answers
237 views

seedjs vs npm as package manager for javascript?

It seems to be two package managers for javascript at the moment. Seedjs and Npm. Which one should one use?
2
votes
2answers
215 views

Can one use negative numbers as seeds for random number generation?

This is not a coding question, but am hoping that someone has come across this in the forums here. I am using Python to run some simulations. I need to run many replications using different random ...
2
votes
2answers
849 views

Set seed on Math.random()

I need to write some junit tests on java code that calls Math.random(). I know that I can set the seed if I was instantiating my own Random object to produce repeatable results. Is there a way to do ...

1 2 3