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 nicovideo_regexp_comment_ng | |
// @version 0.1 | |
// @description ニコニコ動画のコメントを正規表現でNGするスクリプト。EscキーでNGパターンを変更して保存できます。 | |
// @match https://www.nicovideo.jp/watch/* | |
// @match https://www.nicovideo.jp/watch_tmp/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; |
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
[ | |
Nクイーン問題を解くプログラム | |
入力は10進数の数値 (終端には改行を入れてね) | |
] | |
>>[-],----------[--------------------------------------<<[->>++++++++++<<]>>[-<<+>>],----------][-]<<[->>+<+>>>>>>>>>>>>>>>>+<<<<<<<<<<<<<<<<<]>>[-<<+>>]>>>>>>>>>>>>>>>-<<<<<<<<<<<<<<<<[>>>>>>>>>>>>>>>>>[>>>>>>>>>>>>]<<<<<<<<<<<<[-<<<<<<<<<<<<][<<<<<<<<<<<<]<<<<[-]>>>[-<<<+>>>>>>>>>>>>>>>>[>>>>>>>>>>>>]+[<<<<<<<<<<<<]<]<<<[->>>+<<<]>>>>>>>>>>>>>>>>>>>[>>>>>>>>>>>>]<<<<<<<<<<<<[-<<<<<<<<<<<<][<<<<<<<<<<<<]>>>>>>>>>>>[>>>>>>>>>>>>]<<<<<<<<<<<<[-<<<<<<<<<<<<][<<<<<<<<<<<<]>>>>>>>>>>>[>>>>>>>>>>>>]<<<<<<<<<<<<[-<<<<<<<<<<<<][<<<<<<<<<<<<]>>>>>>>>>>>[>>>>>>>>>>>>]<+<+>[<->-<<<<<<<<<<<[<<<<<<<<<<<<]<<<<[-]<<[->>+>>>>>>>>>>>>>>>>>[>>>>>>>>>>>>]+[<<<<<<<<<<<<]<<<<<<<]>>[-<<+>>][-]>>>>>>>>>>>>>>>>[>>>>>>>>>>>>]<[-<<<<<<<<<<<[<<<<<<<<<<<<]<<<<+>>>>>>>>>>>>>>>>>>>[>>>>>>>>>>>>]+[<<<<<<<<<<<<]>>>>>>>>>>>[>>>>>>>>>>>>]+[<<<<<<<<<<<<]>>>>>>>>>>>[>>>>>>>>>>>>]<<<<<<<<<<<<-<<<<<<<<<<<<[<<<<<<<<<<<<]>>>>>>>>>>>[>>>>>>>>>>>>]<]<<<<<<<<<<<[<<<<<<<<<<<<]<<<<[->>>>>>>>>>>>>>>>[>>>> |
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
// actionsMenuが存在するツイートに対し、ツイート元を判別してなにかしらできる | |
// (引用RT内にはactionsMenuが存在しないのでダメ) | |
// TweetDeckのバージョン:Version 4.0.190522185232-ff29ba1 (web) | |
// Chrome拡張のScriptAutoRunnerとかで実行するといいと思います(適当) | |
(()=>{ | |
const tweet_sel = '.js-stream-item'; | |
const replaced_class = 'replaced'; | |
const css = document.styleSheets[0]; |