김유정 - 넌 신경 쓰지 말고 그냥 내 지시에 따라 작전 구역1에 나가면 돼. 알겠지?
- 작전 지역 (음성과 차이)
// ==UserScript== | |
// @name Dumway | |
// @namespace Flash | |
// @include * | |
// @version 1 | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
// From https://github.com/mozilla/shumway/issues/2317#issuecomment-163005209 |
Set-StrictMode -Version Latest | |
$CurrentTime = get-date -format yyyy-MM-dd-HH-mm-ss | |
Function Test-Admin { [bool]((whoami /groups) -Match "S-1-16-12288") } | |
Function Backup-Item($filename) { | |
if (Test-Path $filename) { | |
Rename-Item $filename $(Get-Backupname $filename $CurrentTime) | |
} | |
} | |
Function Get-Backupname($filename, $time) { |
/* | |
Use: | |
new ArbPre("123456781234780123487234").mulS(1000); | |
new ArbPre("123456781234780123487234").mul(new ArbPre("6289304527348952893045206")) | |
*/ | |
class ArbPre { | |
constructor(input) { | |
if (typeof input === "number") { | |
let nums = this._nums = []; | |
while (input > 0) { |
"use strict"; | |
process.stdin.resume(); | |
process.stdin.setEncoding('utf8'); | |
// 自分の得意な言語で | |
// Let's チャレンジ!! | |
process.stdin.on('data', function (chunk) { | |
let items = chunk.split('\n'); | |
let conditions = items[0].split(' '); | |
let rangeLength = parseInt(conditions[0]); | |
let attackLength = parseInt(conditions[1]); |
cancellable function foo() { // extends `async function` and introduces `queue` keyword | |
let b = queue bar(); // can be auto canceled by cancelling foo | |
b === cancellation // true when foo is canceled during bar call, otherwise false | |
await bac(); // will not be auto canceled | |
} | |
let baz = foo(); | |
baz.cancel(); | |
baz === cancellation // true, new `cancellation` variable for function cancellation |
document.addEventListener("keyup", (ev) => { | |
if (!(ev.keyCode === 80 && ev.altKey)) { | |
return; | |
} | |
styleItems(); | |
function styleItems() { | |
let items = Array.from(document.querySelectorAll(".expanding-stream-item")); | |
let nonPhotos = items.filter((item) => !item.querySelector("div[data-card-type=photo]")); |
// ==UserScript== | |
// @name ImmersiveToon | |
// @namespace sn-immersive-toon | |
// @description Immersive Naver Webtoon | |
// @include http://m.comic.naver.com/* | |
// @version 1.3.3 | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener("DOMContentLoaded", () => { |
// ==UserScript== | |
// @name The reduction of Chosun | |
// @namespace sn-chosun-webtoon-reducer | |
// @include http://comic.naver.com/webtoon/detail.nhn?titleId=642598* | |
// @version 1.1 | |
// @grant none | |
// ==/UserScript== | |
(() => { | |
var reducer = document.createElement("style"); |