Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
State: Draft
Based on the Peatio Stable branch
To the coin daemon's {coin}.conf
file, include the -walletnotify
command:
# Notify when receiving coins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/opt/bin/nvidia-smi | |
wget https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb | |
dpkg -i cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb 2> /dev/null | |
apt-key add /var/cuda-repo-8-0-local-ga2/7fa2af80.pub | |
apt-get update | |
apt-get install -qq cuda gcc-5 g++-5 -y | |
ln -s /usr/bin/gcc-5 /usr/local/cuda/bin/gcc | |
ln -s /usr/bin/g++-5 /usr/local/cuda/bin/g++ | |
/usr/local/cuda/bin/nvcc --version |
This is a sample script for uploading files from local PC to Google Drive using Python. In this sample, Quickstart is not used. So when you use this script, please retrieve access token.
curl -X POST \
-H "Authorization: Bearer ### access token ###" \
-F "metadata={name : 'sample.png', parents: ['### folder ID ###']};type=application/json;charset=UTF-8" \
-F "[email protected];type=image/png" \
"https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart"