Skip to main content

Posts

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:
Recent posts

How to change Node JS version

First install the node.JS and NVM To use Node.js with NVM (Node Version Manager), you first need to install the desired Node.js version, then use it. Here's the sequence of commands: ✅ 1. Check installed Node versions : nvm ls ✅ 2. Install a specific Node.js version (e.g., 18) : nvm install 18 ✅ 3. Use a specific version : nvm use 18 ✅ 5. Verify the current version: node -v

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

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

Quick Tips for Cover Letter

  Since there is no Exact format to write a cover letter, Hence you can follow some tips which may increase the impact of your cover letter. Start with Dear Hiring Manager/Team/ Name of Hiring Manager Avoid writing Hi Team Ensure the grammar and spellings are correct Cover letter can be more than 1 page, only if it makes sense to connect else keep it short and crisp  Instead of saying what you want, emphasis more on what you can offer You can go with 80-20 rule if not 100-0, where 20 & 0 is your need Don’t rehash your resume as you are already sending it if the Job is in another location, provide info on why you are moving to another city. Otherwise the employer may think that they might have to bear relocation costs. (eg, As I wanted to move to XYZ city I was looking for ) Employment barrier's should not be mentioned in Cover letter till the time an employer is interested in you Not Mandatory but good to include Cover letter when applying through 3 rd  party agencies...

How I cleared PSM1 Exam

When you start preparing for any scrum master exam the first question comes to your mind is which one to choose. PSM or CSM.  for me the deciding factor was the life span of certificate PSM has a lifetime validity CSM needs to renew every two year.  So I decided to go with PSM and prepared in the below fashion.  1) Downloaded the scrum guide from "Scrum.org" - it is a 14 page PDF file and very hard to understand on first read.  Link to Download : scrumguides.org 2) Went through the entire document to grasp the structure of the guide.  3) Bought a course from Udemy from a teacher called "Valentin". Link is here:  https://www.udemy.com/course/agile-scrum-for-beginners-scrum-master-certification-preparation/ 4) The course is amazing made the scrum guide look like a story 5) Give the second attempt of reading to the Scrum guide followed by the revision of video's.  6) After that attempted sample questions from two places.  a) Scrum.org : https://...

How to remove autorun.inf file?

How to remove autorun.inf file? The most common virus malware that is being spread through USB flash drives is sent through Autorun.inf files. Along with the increasing use of the internet and external drives virus attacks are now much faster and common than ever before. Out of that most common viruses used is through the use of autorun.inf file through the use of   USB flash drives . This malware generally creates multiple copies of itself in each drive as a   read only and hidden file . It won't let you access your drives by giving you an autorun menu when you double click on anydrive( eg: c: or your usb flash drive ) Solution: In this tutorial we will be describing the two ways to get rid of these malwares. ·          Delete  autorun.inf file completely using the   command prompt window   ·          The second way is with the use of tool: USB immunizer. 1) Us...