Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
587 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 ...
3
votes
3answers
491 views

ruby-on-rails: Seeding-data strategies (or loading test data into developer database)

I want to clear and re-load my developer database (Ruby on rails) frequently. Of course, I can manually add the data via the web page but I was wondering if anyone has any strategies for this type of ...
2
votes
3answers
567 views

C# Random Code Field Generator for Object

I have an object with the following properties GID ID Code Name Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobject of the orm is ...
1
vote
2answers
48 views

Java SecureRandom internal state

I'm trying to shuffle an array of integer as per below, and from http://en.wikipedia.org/wiki/Fisher-Yates_shuffle, "An additional problem occurs when the Fisher–Yates shuffle is used with a ...
1
vote
1answer
893 views

Rake db:seed working on local, heroku rake db:seed trying to insert null into id column

For some reason my db:seed is not working when I try to do it via heroku. It works fine when I do it locally. paul@paul-laptop:~/rails_projects/foglift$ heroku rake db:seed rake aborted! PGError: ...
1
vote
3answers
888 views

appending to rake db:seed in rails and running it without duplicating data

Rake db:seed populates your db with default database values for an app right? So what if you already have a seed and you need to add to it(you add a new feature that requires the seed). In my ...
1
vote
1answer
126 views

Misbehaving db:seed in Rails

I've got some strange behaviour going on with my DB Seed. the piece of code in question is this: #seeding info about Question Types @question_types = [:name=> "Single Input", :name=> "Multiple ...
1
vote
2answers
248 views

Can Core Data content be edited directly?

I've been using Core Data for about a week now, and really loving it, but one minor issue is that setting default values requires going through and setting up a temp interface to load the data, which ...
1
vote
5answers
782 views

Mersenne Twister: seeding & visualization

I am using a C# implementation of Mersenne Twister I downloaded from CenterSpace. I have two problems with it: No matter how I seed the algorithm it does not pass DieHard tests, and by that I mean I ...
0
votes
0answers
76 views

MonoTorrent - Client seeding issue

I am using the MonoTorrent-BitTorrent Libary in a client app of mine. I don't want to bother about the details, but the issue I am encountering is the following: I have 3 clients, anything is fine ...
0
votes
0answers
53 views

How to use rand_event() of OpenSSL

To seed the pseudo random number generator of OpenSSL, for Windows the following function can be used: int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam); It should be called with the iMsg, ...
0
votes
1answer
223 views

“rake db:seed” no method error

when I try and run the "rake db:seed" command the rails console outputs "NoMethodError: undefined method `db' for #" not quite sure what going on. I'm using netbeans to build my rails project which is ...
0
votes
1answer
72 views

Can't figure out how to use db:seed for rails in netbeans

can't seem to get my seeds.rb file to run through the command "rake db:seed". I'm using netbeans and I'm a beginner to rails, so I could be doing something really simple and stupid =/. I know you're ...
0
votes
2answers
142 views

Pseudorandom seed methodology for lookup tables

Could someone please suggest a good way of taking a global seed value e.g. "Hello World" and using that value to lookup values in arrays or tables. I'm sort of thinking like that classic spacefaring ...