scripts
scripts copied to clipboard
A collection of useful shell scripts for Linux, Windows & Mac
https://twitter.com/mgechev/status/1130441471105093632?s=19
https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-linux?toc=%2fazure%2fstorage%2fblobs%2ftoc.json
I got this error: ``` HTTPSConnectionPool(host='datasets.blob.core.windows.net', port=443): Max retries exceeded with url: /datasets?restype=container (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known',)) Traceback...
https://github.com/miguelgfierro/scripts/blob/master/git_configure.sh#L35
Based on [this tutorial](http://www.beginninglinux.com/home/server-administration/openssh-keys-certificates-authentication-pem-pub-crt). ### How to generate a Key Pair for authentication without password ```bash ssh-keygen -t rsa -b 2048 -v ``` We have to add the keyname `migonzagpup100_rsa`:...
https://gist.github.com/msalvaris
``` # install CUDA 9 CUDA_REPO_PKG="cuda-repo-ubuntu1604_9.0.176-1_amd64.deb" wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/${CUDA_REPO_PKG} sudo dpkg -i ${CUDA_REPO_PKG} sudo apt-get update sudo apt-get -y install cuda # install cuDNN v7.0.5.15 wget https://ikpublictutorial.blob.core.windows.net/deeplearningframeworks/libcudnn7_7.0.5.15-1%2Bcuda9.0_amd64.deb wget https://ikpublictutorial.blob.core.windows.net/deeplearningframeworks/libcudnn7-dev_7.0.5.15-1%2Bcuda9.0_amd64.deb wget https://ikpublictutorial.blob.core.windows.net/deeplearningframeworks/libcudnn7-doc_7.0.5.15-1%2Bcuda9.0_amd64.deb...
https://github.com/Azure/azure-storage-fuse
sudo mount_smbfs //[email protected]/share-name desired-mount-point then it asks for the password and you add the key. However, I don't have permissions to enter the drive unless I do `sudo -s`. It...
``` conda install ipykernel source activate myenv python -m ipykernel install --user --name myenv --display-name "Python (myenv)" source activate other-env python -m ipykernel install --user --name other-env --display-name "Python (other-env)"...