Skip to content

Instantly share code, notes, and snippets.

View YTsuda's full-sized avatar

YasuyukiTsuda YTsuda

View GitHub Profile
@YTsuda
YTsuda / SlackHideChannels
Last active February 2, 2016 01:59
You can hide and open "CHANNELS" on Slack. It's a Tempermoneky script.
// ==UserScript==
// @name SlackChannelHide
// @namespace http://howtelevision.co.jp/
// @version 0.1
// @description You can hide and open "CHANNELS" on Slack.
// @author YasuyukiTsuda
// @match https://*.slack.com/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// @run-at document-end
// @grant unsafeWindow
@YTsuda
YTsuda / chef_recipe_for_google_api_with_python
Created October 18, 2013 08:00
Part of the chef-recipe to setup the enviroment for using google-api by python.
python_pip "httplib2" do
action :install
end
python_pip "python-gflags" do
action :install
end
python_pip "google-api-python-client" do
action :install