Skip to content

Instantly share code, notes, and snippets.

View ytakashina's full-sized avatar
🌊

Yuya Takashina ytakashina

🌊
View GitHub Profile
@ytakashina
ytakashina / setup.sh
Last active September 25, 2017 12:30
if [ "$(id -u)" != "0" ]; then
echo "Installation was failed. Run as a super user!" 1>&2
return 1
fi
apt update && apt -y upgrade
apt install -y git vim w3m wget tmux vsftpd graphviz openssh-server build-essential
apt upgrade gcc cmake
@ytakashina
ytakashina / jupyter-import.md
Last active November 16, 2017 07:27
Jupyter notebook の import 用 snippets 。
  • data
import tqdm
import pickle
import numpy as np
import scipy
import sklearn
import pandas as pd
import plotly