if you want to know what has been changed in svn server repository, run command:
$ svn st -u
$ svn st -u
I am using VS Code with WSL and use Miniconda on Windows, what is the best practice for managing Python environments inside WSL?
(answers generated by ChatGPT)
Using a separate Miniconda installation inside WSL gives you the most consistent and manageable Python environment experience (isolated from system Python).
Install Miniconda in WSL:
bashwget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh bash Miniconda3-latest-Linux-x86_64.sh
Follow the prompts to install, and allow it to add conda
to your .bashrc
or .zshrc
.
This is to set up the key once, and then don't need to enter the passphrase every single time:
Use an ssh-agent in WSL with your ssh setup from windows 10 | by Philipp Scheit | Medium
Create new key pair
Use the ssh-keygen command to generate a public and private authentication key pair. Authentication keys enable you to connect to a remote system without needing to supply a password each time that you connect.
To create a public and private SSH2 RSA key pair. To create an SSH key pair by using an algorithm other than the default RSA algorithm, use the -t option. Possible values that you can specify include the following: dsa
, ecdsa
, ed25519
, and rsa
. In this case, I use ed25519 algorithm.
After more than five years, I need to set up WSL again, on another Windows machine (yech...see [Windows] The first full crash ever!!!)
It was nice that I documented what I have done back in 2019 in this post: [Windows] Set up Linux subsystem on Windows 10. It was also unfortunate that most of these instructions no longer worked:(
Luckily it is easier. Here is the new instruction: Install WSL | Microsoft Learn