- 今村昌平『復讐するは我にあり』
- 黒澤明『酔いどれ天使』
- ルイス・ブニュエル『砂漠のシモン』
- ルーベン・マムーリアン『市街』
- ヴィンセント・ミネリ『若草の頃』
- ジョン・スタージェス『日本人の勲章』
- エリア・カザン『欲望という名の列車』
- ルイ・マル『鬼火』
This file contains 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
// ==UserScript== | |
// @name Unity - Open Japanese Page | |
// @version 0.1 | |
// @author to | |
// @namespace https://github.com/to | |
// @license MIT | |
// | |
// @match file:///C:/Program%20Files/Unity/Hub/Editor/* | |
// @match https://docs.unity3d.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=unity3d.com |
This file contains 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
javascript:window.open('https://peraimaru.site/show?tweet_url='+encodeURIComponent(location.href));void(0); |
This file contains 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
local obs = obslua | |
local duration = 1200 | |
local interval = 50 | |
local steps = duration / interval | |
local current_scene_name | |
local debug = false |
This file contains 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
'use strict'; | |
var context = {a : 1, b : 2}; | |
withContext(context, () => { | |
console.log(a); // 1 | |
}); | |
function withContext(context, func){ | |
eval( |
This file contains 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 Normalization = { | |
conds : [ | |
['\u3099', 78, '\u3094\u30F4'], | |
['\u3099', 1, 'がぎぐげござじずぜぞだぢづでどばびぶべぼガギグゲゴザジズゼゾダヂヅデドバビブベボ'], | |
['\u309A', 2, 'ぱぴぷぺぽパピプペポ'] | |
] | |
, | |
decompress : function(text){ | |
// 濁音/半濁音を分離する | |
Normalization.conds.forEach(function(cond){ |
This file contains 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 expects = [ | |
'!aa-a', | |
'_______z', | |
'___a', | |
'__a', | |
'_1', | |
'_a', | |
'_aa-a', | |
'1-a', | |
'a', |
This file contains 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
// ==UserScript== | |
// @name iTS - Protect Auto Launch | |
// @include https://itunes.apple.com/* | |
// @run-at document-end | |
// ==/UserScript== | |
document.body.onload = function(){}; |
This file contains 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
if(!Array.slice) | |
Array.slice = Function.prototype.call.bind(Array.prototype.slice); |
NewerOlder