prereq: pip3 should be installed
sudo -H pip3 install jupyter
installing jupyterlab in conda
conda install -c conda-forge jupyterlab
prereq: pip3 should be installed
sudo -H pip3 install jupyter
installing jupyterlab in conda
conda install -c conda-forge jupyterlab
url: https://docs.conda.io/en/latest/index.html
miniconda is a minimum installer for conda
donload linux sh installer for a specific python version from https://docs.conda.io/en/latest/miniconda.html e.g. for python 3.8
chmod +x ~/Downloads/Miniconda*.sh
sudo ~/Downloads/Miniconda3-latest-Linux-x86_64.sh
https://course19.fast.ai/start_aws.html
applied to fast.ai v2 taken from setup of aws ec2
git clone https://github.com/fastai/course-v3
from https://www.techomoro.com/install-and-set-up-angular-on-ubuntu/
install nodejs
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - sudo apt-get install -y nodejs
install npm
sudo apt-get intstall npm
url to configure google drive: https://rclone.org/drive/
see existing configuration, reconfigure
rclone config
#see top dir listing
rclone lsd remotename:
#see contents of a subfolder
| package packt.j9fprog.genericMethods; | |
| import java.util.List; | |
| public class GenPair<K,V> { | |
| private final K left; | |
| private final V right; | |
| public GenPair(K left, V right) { | |
| this.left = left; | |
| this.right = right; |
Java difference between hashtable and hashmap
Hashtable is synchronized , Hashmap is not
Hashtable does not allow null keys or values
HashMap allows one null key and any number of null values