darekagakaku random
by
taizooo
2012-03-29 [2012/03/29 18:25:30]
darekagakaku nikki wo random ni hyouji
/*
* @title darekagakaku random
* @description darekagakaku nikki wo random ni hyouji
* @include http://darekagakaku.herokuapp.com/*
* @license MIT License
* @require
*/
function trim(num, l) {
if (num < 0) {
num = -(num);
}
if (typeof (num) != 'string') {
num = '' + num;
}
var s = l - num.length;
while (s > 0) {
num = '0' + num;
--s;
}
return num;
};
function vday() {
now = new Date();
bottom = new Date("Feburary 17, 2012");
max = now.getTime();
min = bottom.getTime();
rd = new Date(Math.floor(Math.random() * (max - min) + min));
d = trim(rd.getFullYear(), 4) + "-" + trim(rd.getMonth() + 1, 2) + "-" + trim(rd.getDate(), 2);
return "/v/" + d;
}
function go() {
path = vday();
if (location.pathname != path) {
location.pathname = path;
} else {
//go();
location.pathname = "/a";
}
}
go();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。