Similar Posts
Today I Learned (2019-11-18)
How to reset WSL on Windows Type apps & into the search box in the bottom left of the taskbar. Click Apps & features in the search results. The Settings app will open. On the Apps & features page in…
Setup public key ssh login and troubleshooting
Short note on how to setup ssh to login without a password Generate and copy key ssh-keygen -t rsa Copy key ssh [email protected] mkdir -p .ssh cat .ssh/id_rsa.pub | ssh [email protected] ‘cat >> .ssh/authorized_keys’ Try logging in! If that doesn’t…
Temporarily ignore a file in git
To ignore a file [cc] git update-index –assume-unchanged file.to.ignore [/cc] To undo [cc] git update-index –no-assume-unchanged file.to.ignore [/cc] Alternatives: [cci lang]git stash[/cci], [cci lang].gitignore[/cci], but I need to keep the file in the working copy, and not touch the gitignore…
How to install SOCKS5 on your VPS
Focusing on Dante, as I find it to be the easiest to install. First thing first, assuming you are using Ubuntu, do the usual Installing Dante from source on Ubuntu 16.04 The best way to install Dante is to use…
Installing subversion support for Eclipse on Linux
You have two choice: subversive (Belongs to the Eclipse project) or subclipse (hosted on tigris.org). Even though Subversive is the more ‘official’ option, I find it prohibitively confusing to install. You have to go to an external site (polarion) and…
Life with Ubuntu
First, Happy new year to you and your family 🙂 I have been using Linux on a daily basis for several months now and so far life is quite comfortable. For the first time I can simply forget what people…