Top "Seed" questions

Seed is a JavaScript interpreter and a library of the GNOME project.

What does this CRC implementation mean by having a seed value?

I am trying to implement a CRC algorithm in Verilog for the SENT sensor protocol. In a document put out …

checksum crc seed
Random seed at runtime

How can I generate different random numbers at runtime? I've tried srand((unsigned) time(0)); But it seems to get me …

c++ random seed
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? …

python random seed
Getting In Container.php line 752: Class RoleTableSeeder does not exist error, when trying to seed a role in Laravel

Currently, I am trying to create roles for my application, unfortunately I am having some troubles. Whenever I run php …

php laravel seed
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 …

ruby-on-rails seed
Better random algorithm?

I'm making a game in C++ and it involves filling tiles with random booleans (either yes or no) whether it …

c++ algorithm random seed
Predict the Seed of Javascript's Math.random

Okay, so I'm doing some research on how random numbers are generated with the Math.random method. So far I …

javascript random seed
How to seed data when using Model First approach?

So I am learning MVC3 and EF4. I tried the code first method but it was too confusing for me.. …

.net asp.net-mvc-3 entity-framework-4 seed ef-model-first
Entity Framework Code First: How to seed a database for unit testing

My question and code is based on the Code First Entity Framework Unit Test Examples blog post. I am using …

c# testing ef-code-first seed
python seed() not keeping same sequence

I'm using a random.seed() to try and keep the random.sample() the same as I sample more values from …

python random sequence seed