Tagged Questions

0
votes
1answer
46 views

Where did foodscanner get its initial barcode database?

http://dailyburn.com/foodscanner Any ideas?
1
vote
2answers
35 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 …
1
vote
2answers
149 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 f …
1
vote
2answers
62 views

Seed data for sentiment analysis

I'm playing around with sentiment analysis, and I'm looking for some seed data. Is there a free dictionary around? It can be really simple: 3 sets of texts/sentences, for "positi …
0
votes
1answer
58 views

Getting a name error when seeding a database in ruby on rails. How do I include app context?

I have a seed script called load.rb in the db directory of an application. I just got this app from a client so not sure how to run this script. I get a name error on all of the …
3
votes
5answers
455 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 …
3
votes
4answers
268 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 i …
-2
votes
2answers
73 views

Seed Mechanism does not work fine for BlackBerry

Hi I have created AES key in java using seed mechanism and the same thing using BlackBerry. My input string for Seed is same in both of these case. But I am getting different AES. …
1
vote
6answers
380 views

How can I get rid of the warning with rand()? (C++)

Whenever I use the rand function in C++: #include<iostream> #include<time.h> #include<stdlib.h> using namespace std; int main(){ srand(time(0)); int n=(rand()%6) …
2
votes
3answers
460 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 expovaria …
0
votes
6answers
479 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 crea …
3
votes
3answers
105 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 a …
3
votes
4answers
3k 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 …
5
votes
4answers
291 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 doz …
3
votes
3answers
263 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 …