Blog

All the latest posts
Article Tarif Hossain views 715 times
how to solve if chrome using an incorrect local IP address in laravel
Article Sharif Ahmed views 4550 times
[Solved] As password authentication no longer exists in github you have to use Personal Access Token to perform git operations. To use the access token you have to update your local machine's git credentials.
Article Sharif Ahmed views 20033 times
[Solved] While trying to start nestJs server you may face an error that says, UnhandledPromiseRejectionWarning: Error: You must await server.start() before calling server.applyMiddleware() at ApolloServer
Article Sharif Ahmed views 88959 times
[Solved] In Github Desktop while pushing a code you may face an error saying, Author Identity Unknown
Article Sharif Ahmed views 40625 times
If your system does not have Unix socket support or you misconfigured credential helper then you may face an error like fatal: credential-cache unavailable; no unix socket support
Article Tarif Hossain views 14274 times
Create React App Error Error Message - A template was not provided.
Article Sharif Ahmed views 29029 times
Refname is ambiguous error may occur for various reasons like matching of tag and branch name or matching a branch name with the SHA1 prefix of a commit
Article Sharif Ahmed views 1248 times
As github removed password authentication you may face an error like, remote: Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead
Article Mohaimen Khalid views 32877 times
Can't find 'action.yml', 'action.yaml' or 'Dockerfile' under '/home/runner/work/_actions/GoogleCloudPlatform/github-actions/master/setup-gcloud'.
Article Sharif Ahmed views 100282 times
Github recommends that repositories be kept modest, with a maximum size of 1 GB and less than 5 GB is strongly recommended. So if you want to push a large project or a large commit here are some methods shared in this article.
Article Sharif Ahmed views 198146 times
While working with Github you may face that, Git is saying 403 when trying to perform the git push origin master command. This fatal error occurs because password authentication for accessing Github's private repository has been disabled.
Article Sharif Ahmed views 173589 times
After August 13, 2021, password authentication for accessing Github's Private repository has been disabled, and account passwords will no longer be accepted for authenticating Git activities on GitHub.com.
Article Ab Siddik views 2431 times
How to add type check for history object in React using TypeScript? In this article, I will try to explain about it.
Next JS Mohaimen Khalid views 44759 times
I'm using next.js for rebuilding an app for server side rendering. I have a button that handles a search request. In the old app, the handler was this one
Article Mohaimen Khalid views 13117 times
Today we would like to talk about the most common question: how to add a loader when changing page route in nextjs. For this work to done we’ll use next router event. We actuality use routeChangeStart() & routeChangeComplete() event.