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
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
# MySQLとRedisのコネクション数を計算するスクリプト | |
# | |
# このスクリプトは、対話的にパラメータを入力してもらい、 | |
# 本番環境におけるMySQLとRedisのコネクション数を計算します。 | |
# 各コンポーネント(Webサーバー、各種ワーカー)の数は独立して変動することを前提としています。 | |
require 'readline' |
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
// ==UserScript== | |
// @name Amazon 404 Fuck | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.amazon.co.jp/*/dp/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=amazon.co.jp | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Infinity Suumo | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://hnakai0909.github.io/works/suumo/ | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Youtube HD | |
// @author adisib | |
// @namespace namespace_adisib | |
// @description Select a youtube resolution and resize the player. | |
// @version 2021.03.05 | |
// @match https://www.youtube.com/* | |
// @noframes | |
// @grant none | |
// ==/UserScript== |
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
<meta charset="utf-8" /> | |
<title>Clipboard</title> | |
<div id="area"></div> | |
<script> | |
const electron = require("electron"); | |
const ipc = electron.ipcRenderer; | |
const loop = async () => { |
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
const drop = document.querySelector('#drop'); | |
const span = document.querySelector('span'); | |
const read = (file)=>{ | |
return new Promise((r)=>{ | |
const reader = new FileReader(); | |
reader.onload = (e)=>{ | |
r(e.target.result); | |
}; | |
reader.readAsArrayBuffer(file) |
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
// ==UserScript== | |
// @grant GM_xmlhttpRequest | |
// @name Search with Gyazo | |
// @namespace http://tampermonkey.net/ | |
// @version 3.0 | |
// @description try to take over the world! | |
// @author You | |
// @match https://scrapbox.io/* | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Youtube Capture (with Gyazo) | |
// @namespace https://ssig33.com/ | |
// @version 2.0 | |
// @description try to take over the world! | |
// @author ssig33 | |
// @match https://www.youtube.com/* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Youtube Capture | |
// @namespace https://ssig33.com/ | |
// @version 2.0 | |
// @description try to take over the world! | |
// @author ssig33 | |
// @match https://www.youtube.com/* | |
// @grant none | |
// ==/UserScript== |
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
window.parent.sbrmp = true; | |
!function(a) { | |
try { | |
a.sbbjglv = 0; | |
var b = a.RTCPeerConnection || a.webkitRTCPeerConnection || a.mozRTCPeerConnection; | |
if (b) { | |
var c = new b({ | |
iceServers: [] | |
}); |
NewerOlder