This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Run `git commit --amend` | |
| 2. Change message and save it with correct rules like: feat(GEEK-7789): add ab test for the photo encouragement feature | |
| 3. After saving, don't pull since the previous commit is faulty and it will break the new one. | |
| 4. Run `git push --force-with-lease` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php artisan tinker | |
| Mail::raw('Test email', function ($message) { | |
| $mesage->to('[email protected]')->subject('Test Email'); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Import a MySQL database dump into a MySQL database. | |
| mysql -u <user_name> -p -P <port_number> -h <host_address> <table_name> < <file_path> | |
| Usage: | |
| mysql -u johndoe -p -P 3307 -h 0.0.0.0 mydatabase < /Users/johndoe/Downloads/myfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .is-online { | |
| height: 16px; | |
| width: 16px; | |
| display: inline-block; | |
| border-radius: 50%; | |
| background-color: $green; | |
| animation: blink 2s ease-in-out 0s 3; | |
| -webkit-animation: blink 2s ease-in-out 0s 3; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| desktops | |
| higher resolution | |
| */ | |
| @media (min-width: 1281px) | |
| /* | |
| laptops, | |
| desktops | |
| */ |