Skip to content

Instantly share code, notes, and snippets.

View zhiaozhou's full-sized avatar
🎯
Focusing

Zhiao Zhou zhiaozhou

🎯
Focusing
View GitHub Profile
@zhiaozhou
zhiaozhou / Install NVIDIA Driver and CUDA.md
Created June 27, 2018 17:05 — forked from zhanwenchen/Install NVIDIA Driver and CUDA.md
Install NVIDIA CUDA 9.0 on Ubuntu 16.04.4 LTS
@zhiaozhou
zhiaozhou / nvidia-reinstall.sh
Created June 27, 2018 16:46 — forked from morgangiraud/nvidia-reinstall.sh
Script to reinstall manually nvidia drivers,cuda 9.0 and cudnn 7.1 on Ubuntu 16.04
# Remove anything linked to nvidia
sudo apt-get remove --purge nvidia*
sudo apt-get autoremove
# Search for your driver
apt search nvidia
# Select one driver (the last one is a decent choice)
sudo apt install nvidia-370
@zhiaozhou
zhiaozhou / nvidia-reinstall.sh
Created June 27, 2018 16:46 — forked from morgangiraud/nvidia-reinstall.sh
Script to reinstall manually nvidia drivers,cuda 9.0 and cudnn 7.1 on Ubuntu 16.04
# Remove anything linked to nvidia
sudo apt-get remove --purge nvidia*
sudo apt-get autoremove
# Search for your driver
apt search nvidia
# Select one driver (the last one is a decent choice)
sudo apt install nvidia-370
@zhiaozhou
zhiaozhou / nvidia-reinstall.sh
Created June 27, 2018 16:46 — forked from morgangiraud/nvidia-reinstall.sh
Script to reinstall manually nvidia drivers,cuda 9.0 and cudnn 7.1 on Ubuntu 16.04
# Remove anything linked to nvidia
sudo apt-get remove --purge nvidia*
sudo apt-get autoremove
# Search for your driver
apt search nvidia
# Select one driver (the last one is a decent choice)
sudo apt install nvidia-370
@zhiaozhou
zhiaozhou / backup.py
Created October 17, 2017 02:02 — forked from revolunet/backup.py
download your google drive files with python
# -*- encoding: UTF-8 -*-
import os
import httplib2
# pip install --upgrade google-api-python-client
from oauth2client.file import Storage
from apiclient.discovery import build
from oauth2client.client import OAuth2WebServerFlow