- Go To
System Preferences > Trackpad
. - Enable all options across all tabs.
- Back & go to
System Preferences > Accessibility > Mouse & Trackpad > Trackpad Options
. - Enable dragging with
three finger drag
.
- Go To
System Preferences > Date & Time > Clock
. - Uncheck
Use a 24-hour clock
. - Check
Show date
. - Check
Announce the time
On the hour
.
- Go To
System Preferences > Sound
. - Check
Show volume in menu bar
.
- Go To
System Preferences > Bluetooth
. - Check
Show Bluetooth in menu bar
.
- Go To
System Preferences > User & Groups
. - Disable
Guest User Login
.
- Go To
System Preferences > Security & Privacy
. - Change
Require password
value toimmediately
. - Turn on
Filevault
. I already on it during Mac setup. - Turn on
Firewall
.
- Go To
System Preferences > Dock
. - Check all checkboxes except
Magnification
.
- Go To
Finder Preferences > Sidebar
. - Check home directory.
- On
Advanced
tab selectSearch The Current Folder
forWhen Performing a Search
. Finder > View > Show Tab Bar, Show Status Bar, Show Path Bar
.Finder > View > Show View Options > Calculate All Size > Use as Defaults
.
- Go To
Terminal Preferences
. - On startup, open new window with
Pro
. - New windows open with
Same Profile
.
- Xcode
- The Unarchiver
- [Microsoft Remote Desktop] 10(https://itunes.apple.com/us/app/slack/id803453959)
- Slack
- Guidance
- [LastPass](https://lastpass.com/misc_download2.php?tab=windows&anchor=sfjsarif
- )
- Google Chrome
- Firefox Developer Edition
- Chatwork
- Skype
- PHPStorm
- Sequel Pro
- LibreOffice
- CleanMyMac X
- FileZilla
- SourceTree
- Fork
- Shuttle
- Dropbox
- Avro
~/.bash_profile
~/.gitignore_global
~/.gitconfig
~/.ssh
Install Composer
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mkdir -p /usr/local/bin
sudo mv composer.phar /usr/local/bin/composer
Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Install Valet
brew install php
brew install [email protected]
brew link [email protected] --force
composer global require laravel/valet
valet install
cd ~/Sites
valet park
Biplobs-MacBook-Pro:Sites biplob$ brew services restart [email protected]
==> Successfully started `[email protected]` (label: [email protected])
Biplobs-MacBook-Pro:Sites biplob$ mysql_secure_installation
Securing the MySQL server deployment.
Connecting to MySQL using a blank password.
VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?
Press y|Y for Yes, any other key for No: n
Please set the password for root here.
New password:
Re-enter new password:
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.
Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
- Dropping test database...
Success.
- Removing privileges on test database...
Success.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.
All done!
Install & Configure xDebug with PHPStorm
- Open PHPStorm Preferences (Cmd +,)
- Search with xDebug
- Follow the steps.
pecl install xdebug
- Follow these steps https://blackfire.io/docs/up-and-running/installation
Install PHP-CS-Fixer
composer global require friendsofphp/php-cs-fixer
Configure PHPStorm to use PHP-CS-Fixer
- Follow the steps on https://c5japaninc.backlog.jp/git/COMPANY/deployer/tree/master
Install PHPUnit
wget https://phar.phpunit.de/phpunit.phar
chmod +x phpunit.phar
sudo mv phpunit.phar /usr/local/bin/phpunit
phpunit --version