xxxxxxxxxx
OpenAI is a research organization that aims to promote and develop
friendly artificial intelligence in a responsible manner. The company was
founded in 2015 by a group of entrepreneurs, researchers, and philanthropists,
including Elon Musk and Sam Altman, with the goal of advancing artificial
intelligence technology in a way that benefits humanity as a whole. Some
of OpenAI's key research areas include machine learning, robotics, and
economics. The company is known for its work on developing advanced machine
learning algorithms and for its efforts to promote the responsible
development and use of artificial intelligence.
xxxxxxxxxx
# Via Laravel Installer
composer global require laravel/installer
laravel new blog
# Via Composer Create-Project
composer create-project --prefer-dist laravel/laravel blog
xxxxxxxxxx
//There are two ways to install laravel
//1-install laravel with Composer
composer create-project laravel/laravel example-app
// or
//2-install laravel with Laravel Installer
composer global require laravel/installer
laravel new example-app
// go to the project
cd example-app
xxxxxxxxxx
composer create-project --prefer-dist laravel/laravel appname
cd appname
composer require laravel/sanctum
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"
composer require laravel/jetstream
php artisan jetstream:install inertia
php artisan migrate
npm install
php artisan vendor:publish --tag=jetstream-views
php artisan serve
npm run hot
xxxxxxxxxx
Laravel is a php web application framework with expressive, elegant syntax.
feel free to google search all your curiosity we always here to help you.
xxxxxxxxxx
Laravel is a PHP web application framework with expressive, elegant syntax
xxxxxxxxxx
< == LARAVEL INSTALL == >
composer create-project --prefer-dist laravel/laravel blog
xxxxxxxxxx
import gym
env = gym.make("CartPole-v1")
observation = env.reset()
for _ in range(1000):
env.render()
action = env.action_space.sample() # your agent here (this takes random actions)
observation, reward, done, info = env.step(action)
if done:
observation = env.reset()
env.close()