xcode-select --install
brew install fastlane
diskutil list | |
sudo diskutil eraseDisk FAT32 MYSD MBRFormat <path> | |
example: | |
sudo diskutil eraseDisk FAT32 MYSD MBRFormat /dev/disk2 |
# remove private in .gitignore | |
sed -i '' '/private/d' .gitignore | |
# add private in .gitignore | |
echo "private" >> .gitignore | |
# untrack private |
Get composer:
Ref: https://getcomposer.org/download/
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
Docker Image: abernix/meteord:node-8-base
curl -L -O https://bitbucket.org/wkhtmltopdf/wkhtmltopdf/downloads/wkhtmltox-0.13.0-alpha-7b36694_linux-jessie-amd64.deb
dpkg -i wkhtmltox-0.13.0-alpha-7b36694_linux-jessie-amd64.deb
# Linux VM (Homestead) on a Windows 10 host | |
# Doing npm install --no-bin-links on Laravel 5.5 results to an error | |
# added info: we migrated from Laravel 5.2 | |
# to fix, install yarn | |
$ sudo npm install -g yarn | |
# delete your node_modules folder (optional but to be safe, do this as well) | |
$ rm -rf node_modules |