Skip to content

Instantly share code, notes, and snippets.

View 3dozens's full-sized avatar

Kento Hayasaka 3dozens

View GitHub Profile
$( function() {
//表示させたい場所
var $sortable = $(".sortable");
var _position = "position:absolute;";
var _clientX;
var _clientY;
var canDrag = true;
@3dozens
3dozens / send_gmail.py
Last active June 5, 2017 09:16
Google API Client Libraryを使って、PythonからGmailを送信
from __future__ import with_statement
import pickle
import webbrowser
import httplib2
import base64
from sys import exit
from email.mime.text import MIMEText
from oauth2client import client
from apiclient.discovery import build