Top "Seed" questions

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

How to seed the production database using the Capistrano gem?

I am using Ruby on Rails 3.0.9 and I would like to seed the production database in order to add some …

ruby-on-rails ruby ruby-on-rails-3 capistrano seed
Seeding users with Devise in Ruby on Rails

In my development and test environments, I want to seed the database with a bunch of users. I'm using Ruby …

ruby-on-rails ruby-on-rails-3 devise ruby-on-rails-3.2 seed
How to seed data with AddOrUpdate with a complex key in EF 4.3

I am trying to seed a development database with some test data. I have used context.People.AddOrUpdate(p => …

c# entity-framework-4.3 seed linq-expressions entity-framework-migrations
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 …

python random seed
Changing Identity Seed in SQL Server (Permanently!)

Is there any way of changing the identity seed for an identity column permanently? Using DBCC CHECKIDENT just seems to …

sql-server seed identity-column
How to create SecurityStamp for AspNetUser in ASP .NET MVC 5

When I create user by Register action whe application is running the application user gets SecurityStamp. When I add user …

c# asp.net-mvc entity-framework asp.net-identity seed
In Laravel, how do I retrieve a random user_id from the Users table for Model Factory seeding data generation?

Currently, in my ModelFactory.php, I have: $factory->define(App\Reply::class, function (Faker\Generator $faker) { return [ 'thread_id' =&…

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

php arrays random seed
How to seed Django project ? - insert a bunch of data into the project for initialization

I'ved been developing in Django and was wondering if there is a way to seed data into the database in …

python django django-queryset seed
How to get current seed from C++ rand()?

I generate a few thousand object in my program based on the C++ rand() function. Keeping them in the memory …

c++ random get seed