Skip to content

Instantly share code, notes, and snippets.

View tekeburak's full-sized avatar
🎯
Focusing

Burak Teke tekeburak

🎯
Focusing
View GitHub Profile
@tekeburak
tekeburak / gen_auth_token.md
Created February 22, 2018 00:07
Generate auth tokens for Colab
# Generate auth tokens for Colab
from google.colab import auth
auth.authenticate_user()
@tekeburak
tekeburak / install_DF_wrapper.md
Last active February 22, 2018 00:00
Install a Drive FUSE wrapper
# Install a Drive FUSE wrapper.
# https://github.com/astrada/google-drive-ocamlfuse
!apt-get install -y -qq software-properties-common python-software-properties module-init-tools
!add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null
!apt-get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfuse fuse
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 21 16:36:29 2018
@author: burak
"""
print("Hello Colab!")