Reset Password
- Open cmd on windows
- Switch to root user
ubuntu config --default-user root
3. Open Ubuntu
whoami //root
ls /home //find your <your-username>
passwd <your-username> //set new password for user
4. Enter your new password
5. Set your user back to default
5. Back in cmd
ubuntu config --default-user <your-username>
Install and update
- Update package and install nvm
sudo apt update
2. Install NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
3. Check version
nodejs --version
npm --version
nvm --version
4. To see list of all nvm commends
nvm
To endorse everything on someone Linkedin profile in one easy step.
Copy and paste into the browser console on the profile page
var targetButton = document.getElementsByClassName("pv-profile-section__card-action-bar pv-skills-section__additional-skills")
if(targetButton[0].getAttribute("aria-expanded") == "false"){
targetButton[0].click()
}
var skills = document.getElementsByClassName('pv-skill-entity__featured-endorse-button-shared');
for(i=0; i<skills.length; i++){
if(skills[i].getAttribute("aria-pressed") == "false"){
skills[i].click()
}
}