Re: Best practices for writing code comments
Hey Buddy. I found **9 Rules** for writing comments on code. **Rule 1: Comments should not duplicate the code.** **Rule 2: Good comments do not excuse unclear code.** **Rule 3: If you ca...
VS Code VIM daily practice
Hey, I practice these **Key binding** in my day-to-day basis work with VIM and VS Code. ## Switching Tabs | Command | Keyboard Shortcuts | |:------------|:----------------------| | S...
How to install Brew on Mac
Here is the step-by-step process how to install Brew on Mac. type below: ``` brew update brew install redis ``` To have launchd start redis now and restart at login: ``` brew services s...
Re: Automatically deploy on Server from Bitbucket and Github
If you are looking for a way how to do automatically deploy on the server from **BitBucket** and **GitHub**, I found an interesting article for that. It's pretty useful and handy. >Git auto-deploym...
Laravel 8 database factory not found!
For some reason, if you change the model directory in laravel 8, you may face issues with creating the factory. It will show you the following error- ```php Class 'Database\Factories\Your\Director...
How to install RabbitMQ on Mac
For some reason, if you need to install RabbitMQ on Mac, then this post will help you. ## Install RabbitMQ I will use [homebrew](https://brew.sh/) for installing rabbitMQ. If you don't have homeb...
How to install VueJS via Laravel mix on non-laravel project?
Hey, If you are curious to know how to use [VueJS](https://vuejs.org/) via [Laravel Mix](https://laravel-mix.com/) on a non-laravel project, then this tutorial will help you to figure it out. FYI,...
Integrate PayPal Plus on Laravel 8
If you are interested to integrate [PayPal plus](https://developer.paypal.com/docs/integration/paypal-plus/mexico-brazil/paypal-plus-integration-guide-mexico-brazil/) with Laravel 8, this tutorial wil...
How to Install Horizon in Laravel
Hey, If you are curious to know how to install horizon and how to use in on Laravel local application, this post may help you figure it out. ## What is Horizon? According to the documentati...
Real life implementation of Manager pattern on Laravel
Hey, I was watching a talk by [Yaz Jallad](https://github.com/ninjaparade) about **I'd Like To Speak To Your Manager** on [Laravel Meetup](https://meetup.laravel.com/). He explained the manager p...