Skip to main content

MobiShoppe

Excel Data Viewer

Comments

Popular posts from this blog

How to access API key from hugging face

2. Log in After signing up, log in at https://huggingface.co/login. 3. Go to your account settings Click your profile picture in the top right. Select "Settings" from the dropdown. 4. Access API tokens In the left menu, click " Access Tokens " or go directly to:

Delete Git/Other Credentials from Windows

 Delete your git credentials from Windows for new repository 1) Search "Credential Manager" on your machine 2) Open "Windows Credentials" from it 3) Under "Generic Credentials" section look for "github/bitbucket" etc. 4) Select drop down and choose Remove credentials Good to go and create Generate new credentials This is very handy when you are changing your remote repository and avoids pushing off data to an incorrect repository and increases security of your git repo.  You can also use the same approach to remove any other saved credentials.  Note: for generating new credentials and adding them please follow the below git hub page SSH Key Generation

Switching between different Node.JS versions

Yes, you can have multiple versions of Node.js installed on your system using **Node Version Manager (NVM)**. you need to install **nvm-windows**. 🔹 Steps to Install and Manage Multiple Node.js Versions on Windows** 1️⃣ Install NVM for Windows Download **NVM for Windows** from official website: 👉 [https://github.com/coreybutler/nvm-windows/releases](https://github.com/coreybutler/nvm-windows/releases) - Install it and restart your computer. 2️⃣ Install Multiple Node.js Versions** - Open **Command Prompt (cmd) or PowerShell** and run: nvm install 18.17.0 # Install Node.js 18 nvm install 22.14.0 # Keep your existing version eg: Node.js 22 List installed versions: nvm list 3️⃣ Switch Between Node.js Versions** nvm use 18.17.0 To switch back to Node.js 22: nvm use 22.14.0 🔹 How to Set a Default Node.js Version** If you always want Node.js 18 to be the default: nvm alias default 18.17.0