Skip to content

Instantly share code, notes, and snippets.

View ytone's full-sized avatar

Yuta Tonegawa ytone

View GitHub Profile
@ytone
ytone / janken.cc
Last active January 28, 2017 06:36
/*
プログラミング初級C/C++最終レポート
テーマ: 意地悪なじゃんけんゲーム
作成者: 早稲田大学国際教養学部1年 佐藤
更新者: みんなのコード利根川 裕太
作成日: 2017年1月25日
*/
#include <stdio.h>
@ytone
ytone / you245cloud
Last active August 29, 2015 14:08
bookmarklet of youtube to 245cloud
javascript:match=location.search.match(/(\?|&)v=(.+?)($|\&)/);if(match[2]!==undefined){document.location='http://245cloud.com/#youtube:'+match[2];}
@ytone
ytone / forwardToAdmin.js
Last active August 29, 2015 14:04
Forward Gmail message to end point
function forwardToAdmin() {
//Define
//EndPoint URL
var endpoint = "https://your-admin-domain.com/endpoint.php";
//BasicAuthForEndPoint
var unamepass = "username:password";
//Label
var LabelIn = "ToAdmin";
var LabelArchive = "ToAdmin/Archive";