Category: Web Development

Know the popular web server error codes

Many a time when we try to visit any particular web page, we get an error code displaying in lieu of the original page. Have you ever surprised what that error code meant? Here is a list of the most popular error codes and their description. The first thing you should do anytime you get […]

Read More

Useful GIT Commands

1. Repository Setup Initialize new repo git init Clone existing repo git clone https://github.com/username/repo.git Check remote repository git remote -v Add remote git remote add origin https://github.com/username/repo.git 2. Daily Workflow Commands Check status git status Pull latest changes git pull origin main Stage all files git add . Stage specific file git add filename.js Commit […]

Read More

5 websites to get icons completely free

As a web and application developer I need icons on my every project. Icons are copyrighted assets like images. I prefer to use kind of public domain graphics which are completely free for commercial purposes. From where we can get completely free icons for web and graphic design?  Here are the 5 best websites to […]

Read More