reinstall
How to Reinstall Broken npm
Delete the Global NPM Folder https://stackoverflow.com/a/5926706/349659 npm list -g For Windows this will most likely be: %AppData%\npm\node_modules You can paste that into a folder’s address bar and it will take you there. Once there delete the folder named npm. Download the Latest Release of NPM https://github.com/npm/cli/releases/latest Grab the zip and unzip it to your node_modules … Read more
exporting installed plugins from eclipse to another
Start fresh and install plugins from an old install The idea here is that you want to keep your old install intact, download a new indigo package (http://download.eclipse.org/) and just adds the existing plugins to your install. With Indigo this is now made super easy! Step 1: Download and unzip your Indigo install: http://download.eclipse.org Step … Read more
How to reinstall rpm package?
Try: rpm -iv –replacepkgs <packagefile>. More details are in the book.
How to save Atom editor config and list of packages installed
Use Git to version control your config file (~/.atom/config.cson), and any other config files (dotfiles) you may have. You can then host your Git repository for free on somewhere like GitHub, and retrieve it on other computers simply by running git clone https://github.com/{username}/{repo}. You can then keep it up to date using git push (to … Read more