-bash: nvm: command not found
Hello NVM users! I recently encountered a situation where i installed the nvm but while trying to use it, I was showing the error as “-bash: nvm: command not found”. In this blog i will share the solution i used to resolve it. so that everyone can get help form it. Lets understand the NVM first. […]
How to update readonly hosts file?
While trying to edit my readonly hosts file on a Mac, I was getting the following output and I was unable to save any changes. Let’s decode this and see how we can edit readonly hosts file and save our changes. Explanation of Each Part: Why this is Read-Only? The hosts file is usually a […]
Converting circular structure to JSON
I have recently encountered the below error while using the JSON.stringify for a class object. Error: “stack”:[“TypeError: Converting circular structure to JSON”,” –> starting at object with constructor ‘Cluster'”,” | property ‘_source’ -> object with constructor ‘AutoconfSource'”,” — property ‘_cluster’ closes the circle”,” at JSON.stringify (<anonymous>)” Let’s decode this in this article, so that it […]
–frozen-lockfile CI Build Error: “Your lockfile needs to be updated…”
CI Error: CI pipeline build fails with an error for frozen-lockfile: I have recently encountered the above CircleCi build error while running the pipeline for a project. Let’s understand the root cause of this and how to solve it. It may help everyone in the global community of coding. We often see the files likes […]
How to Install Homebrew in macOS
We often struggle to install the Homebrew package manager in our mac. Although it is a simple installation but it always gives surprises. I have also done it earlier couple of times, and had different experience for macOS. Its been a bit tricky, but anyways it’s simple. we can follow the below steps and it […]
How to do recursive copy in mac
Before learning about recursive copy lets go through the copy command first. What is Copy command in mac? “cp” command is used to copy the files from source directory to destination directory in mac. If we are using this “cp” command without any arguments as below, it can only copy the specific file. It won’t […]
Manage .DS_Store files on Mac
If We are using a Mac, we can see that whenever we create any folder in macOs, the system automatically creates a DS_Store files for each folder. and as these files contains dot at in-front of the file, so usually we can’t see these file which is hidden by nature. What is .DS_Store File? DS_Store […]
AWS codeBuild error: Unknown runtime version
Error: YAML_FILE_ERROR Message: Unknown runtime version named ‘14.21-alpine’ of nodeJs. This build image has the following versions: 10, 12. Details: While updating the node version in buildSpec.yml. we often see this type of error occurs. this error indicates that the codeBuild runtime used in the build process don’t have the support for the given nodeJs […]
error NG6002: Appears in the NgModule.
error NG6002: Appears in the NgModule.imports of AppModule, but could not be resolved to an NgModule class. While Upgrading the angular version or during the ng serve we might have seen the below error related to NgModule.imports such as “error NG6002: Appears in the NgModule.imports of AppModule, but could not be resolved to an NgModule […]
Internal Service Error: CodeBuild is experiencing issues
While “PROVISIONING” the build sometimes we can get the issue such as “Internal Service Error: CodeBuild is experiencing issues”. This can be because of many issues like wrong image used while build or permission issue of AWS codeBuild role. But most of the time this can be the issue with the length of the environment […]