How to fix mspdb100.dll is missing from your computer

  • 02 October 2019
  • ADM

How to fix The program can't start because mspdb100.dll is missing from your computer. Try reinstalling the program to fix this problem. by adding the VC 10.0 IDE on the Windows system environment variables or by running the vcvars32.bat for the current session.


How to fix apt lock-frontend error in Ubuntu

  • 24 August 2019
  • ADM

How to fix the E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) error.


How to remove a remote from git

  • 14 April 2020
  • ADM

To remove a remote you can use the command git remote rm in the terminal, from the root folder of your repository.


How to remane a remote from git

  • 10 August 2018
  • ADM

To rename a remote you can use the command git remote rename in the terminal, from the root folder of your repository.


How to add a remote to git

  • 23 March 2020
  • ADM

To add a new remote you need to use the git remote add command on the terminal in the root folder of your repository.


How to check if file exists in Golang

  • 29 March 2018
  • ADM

How to check if a file exists in Golang using os.Stat method. A FileInfo describing the named file or an error is returned.