Skip to content

Instantly share code, notes, and snippets.

@furugomu
furugomu / brot.md
Last active December 21, 2015 22:19
ドイツのパン

ドイツパン

ドイツに到着ー! まずは本場のパンを食べて腹ごしらえですね! え、LIVE? パン食い生中継的な?

あれ、普通に歌うだけ!?

最初は負けたけど、アタシは強敵ですよ。ここはパンの国ですから!


Twitter公式クライアントのコンシューマキー

Twitter for iPhone

Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU

Twitter for Android

Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for Google TV

Consumer key: iAtYJ4HpUVfIUoNnif1DA

@furugomu
furugomu / index.html
Created May 10, 2013 08:13
A CodePen by furugomu. みりあジュークボックス - みりあちゃんが喋ります。Safari や Google Chrome などで動作します。
<h1 id=title>みりあジュークボックス</h1>
<p>Chrome や Safari で動作します。<p>
<div id="e">
<img src="http://125.6.169.35/idolmaster/image_sp/card/l/0793eaf891f21d96424137f2fb375650.jpg" alt="" width=320>
</div>
<div id="serifu">&nbsp;</div>
<div id="jukebox">
<p>
volume <input type=range min=0 max=1.0 value=0.5 step=0.05 id=volume />
@furugomu
furugomu / hiromi.md
Last active December 16, 2015 20:49
マドリードのもじゃでこちゃん

もじゃでこちゃん

スペインに来たことで、私少し変われたかも。前にくらべると自然に笑えるようになったと思うの

みんなに見てもらうの!

まだちょっと不慣れかも…でも、なんだか楽しいな


@furugomu
furugomu / yukko.md
Last active December 16, 2015 15:48
バルセロナのユッコ

ユッコ

今バルセロナに超能力の嵐が吹き荒れる! ようこそ、サイキックアイドル、ユッコの本拠地へ! パワーよ集えっ!

ただの歌と思わないでね!

えっ、ただの歌だった? い、いきなり本気出したらつまらないし


// <input type=datetime> の代わりに type=date と type=time を並べる
// $("input[type=datetime]").datetimeInput()
jQuery.fn.datetimeInput = function(options) {
var $ = jQuery;
var usable = function(type) {
return $("<input>").attr('type', type).prop('type') == type;
}
// datetime を扱えるブラウザなら何もしない
if (usable("datetime")) return;
// date, time を扱えないブラウザなら何もしない
@furugomu
furugomu / millionlive.user.js
Last active December 15, 2015 02:29
ミリオンライブのアニメーションを全てスキップするグリモン(Chrome用)
// ==UserScript==
// @name million live
// @include http://app.ip.bn765.com/app/index.php/*
// @include http://imas.gree-apps.net/app/index.php/*
// ==/UserScript==
var script = document.createElement('script');
var f = function() {
var handler = function(e) {
if (!e.ctrlKey) return;
@furugomu
furugomu / nikaido.css
Created March 9, 2013 16:50
ユーザーCSS: 右下に千鶴
html::after {
content: url(http://m.ip.bn765.com/210067ebb48);
position: fixed;
right: 0; bottom: 0;
margin: 0; padding: 0;
margin-bottom: -10px;
-webkit-filter: drop-shadow(-1px -1px 5px #533);
pointer-events:none;
}
@furugomu
furugomu / eigyo.md
Last active December 14, 2015 11:48
ミリオンライブの漫才デモいちらん
@furugomu
furugomu / imas-ml.js
Created February 27, 2013 17:06
ミリオンライブのマイページで、クリックでも喋るようにする。
$(".unit-ani-box")
.on("mousedown", function() {
imas.UnitArea.touch($(this).data("position"));
})
.on("mouseup", function() {
imas.UnitArea.release($(this).data("position"));
});