This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //これ開いてから使う http://www.anohana.jp/menma/ | |
| javascript:var num=0;var mgn=function(){var a=$('.dd_calendar a');if(!start&&num<a.length){eval(a[num].href);num++;}else if(num==a.length-1){num=0;}};mgn();setInterval(mgn,100); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //これ開いてから使う http://www.anohana.jp/menma/ | |
| javascript:eval($('.dd_calendar a')[Math.floor(Math.random()*$('.dd_calendar a').length)].href);setInterval(function(){var a=$('.dd_calendar a');if(!start)eval(a[Math.floor(Math.random()*a.length)].href)},100); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #coding:UTF-8 | |
| require 'twitter' | |
| require 'kconv' | |
| input = ARGF.gets.toutf8 | |
| Twitter.configure do |config| | |
| config.consumer_key = '**************' | |
| config.consumer_secret = '******************************' | |
| config.oauth_token = '******************************' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var getText = function(n){ | |
| var c = n.childNodes; | |
| for(var i=0;i<c.length;i++){ | |
| var m = c[i]; | |
| if(m.nodeType==1 && !m.tagName.match(/^script|style$/i)){ | |
| getText(m); | |
| }else if(m.nodeType==3 && !m.textContent.match(/^\s*$/)){ | |
| console.log(m.textContent); | |
| } | |
| } |
NewerOlder