AWS Overview
What is AWS? Amazon Web Services(AWS), Inc. is a subsidiary of Amazon that provides on-demand cloud computing platforms and APIs to individuals, companies, and governments, on a metered, pay-as-you-go basis.... Read More
CSRF Protection in Laravel
CSRF stands for Cross-Site Request Forgery. It is a security vulnerability that occurs when an attacker tricks a user into performing actions on a website without the user's knowledge or... Read More
How to change git username & password after you change the git password.
To configure your Git user information on macOS, follow these steps: git config --global user.name "John Doe" git config --global user.email "john@example.com" Don't forget to change the user name and... Read More
How to use git stash
When working with Git, you can use the "git stash" feature to save your changes temporarily without committing them. This is helpful when you need to switch to another branch,... Read More
Laravel Notifications
Typically, notifications should be short, informational messages that notify users of something that occurred in your application. For example, if you are writing a billing application, you might send an... Read More