Go to this link and follow the instructions. https://getcomposer.org/doc/00-intro.md#installation-windows (this is not a guide to install composer :))
C:\Users\username>composer -V
Composer version xxxxxxxxxx
REMIX EXAMPLE PROJECT | |
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
It contains 3 directories: | |
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
SCRIPTS |
Find where your composer file is which composer | |
For me, it was in | |
/c/Users/USERNAME/AppData/Roaming/Composer/vendor/bin/composer | |
Open a terminal in that directory | |
follow the steps here - Installastion Steps | |
composer -V should now return 2.x |
# Colours | |
git config --global color.status auto | |
git config --global color.branch auto | |
git config --global color.diff auto | |
# Short-hand aliases | |
git config --global alias.st status | |
git config --global alias.ci commit | |
git config --global alias.co checkout | |
git config --global alias.br branch |
# Don't show errors which contain full path diclosure (FPD) | |
# Use that line only if PHP is installed as a module and not per CGI | |
# try using a php.ini in that case. | |
# Change mod_php5.c to mod_php7.c if you are running PHP7 | |
<IfModule mod_php5.c> | |
php_flag display_errors Off | |
</IfModule> | |
# Don't list directories | |
<IfModule mod_autoindex.c> |
cat ~/.ssh/id_rsa.pub | ssh user@droplet-ip "cat >> ~/.ssh/authorized_keys" |
wget -r -nc -p --html-extension -k site.com |
Go to this link and follow the instructions. https://getcomposer.org/doc/00-intro.md#installation-windows (this is not a guide to install composer :))
C:\Users\username>composer -V
Composer version xxxxxxxxxx
Your user as owner | |
I prefer to own all the directories and files (it makes working with everything much easier), so I do: | |
# sudo chown -R my-user:www-data /path/to/your/laravel/root/directory | |
Then I give both myself and the webserver permissions: | |
# sudo find /path/to/your/laravel/root/directory -type f -exec chmod 664 {} \; | |
# sudo find /path/to/your/laravel/root/directory -type d -exec chmod 775 {} \; |
# Your table will have something like this | |
<b-table show-empty | |
stacked="sm" | |
:items="items" | |
:fields="fields" | |
:current-page="currentPage" | |
:per-page="perPage" | |
:filter="filter" | |
@filtered="onFiltered" | |
@row-clicked="editUser" |
A 3D vehicle derby video game rendered in three.js and run on a physi.js physics engine. UV maps designed in Adobe Illustrator; meshes created in Blender and imported as glTF.
Also wrote a tutorial on implementing complex 3D shapes like these, check it out. :)
A Pen by Matthew Main on CodePen.