Skip to content

Instantly share code, notes, and snippets.

# -*- coding: utf-8 -*-
Plugin.create(:mikutter_kyuuyo_koujo) do
command(
:mikutter_kyuuyo_koujo,
name: '給与所得者の基礎控除申告書兼給与所得者の配偶者控除等申告書兼所得金額調整控除申告書',
condition: lambda{ |opt| true },
visible: true,
role: :timeline
) do |opt|
;; -*- fundamental -*- ; coding: utf-8 -*-
;; okuri-ari entries.
いr /挿入/
かk /顔射/自慰/
きm /理性崩壊/
こk /自慰/
じこr /避妊失敗/
じこt /避妊失敗/
だs /射精/排卵/
でc /射精/排卵/
@Akkiesoft
Akkiesoft / spambuster.rb
Created October 9, 2020 14:15
スパムリププライヤーに対応するmikutterプラグイン
# -*- coding: utf-8 -*-
Plugin.create(:fxxk_spam_tooter) do
command(
:fxxk_spam_tooter,
name: 'スパムリププライヤーに対応する',
condition: -> _ { true },
visible: true,
role: :timeline
) do |opt|
@Akkiesoft
Akkiesoft / mikutter_hokkaido_no_ie.rb
Last active September 19, 2021 13:32
カーーン!!!
# -*- coding: utf-8 -*-
Plugin.create(:mikutter_hokkaido_no_ie) do
command(
:mikutter_hokkaido_no_ie,
name: '木の城たいせつ',
condition: lambda{ |opt| true },
visible: true,
role: :timeline
) do |opt|
@Akkiesoft
Akkiesoft / mikutter_currybox.rb
Last active September 19, 2021 13:33
電競遊戯の水冷鋼化ガラス側板全面透明ネットカフェネットカレーpcデスクトップの大型カレーボックス
# -*- coding: utf-8 -*-
Plugin.create(:mikutter_currybox) do
command(
:mikutter_currybox,
name: '大型カレーボックス',
condition: lambda{ |opt| true },
visible: true,
role: :timeline
) do |opt|
@kb10uy
kb10uy / vtuber-pun-quiz.md
Last active November 5, 2020 14:47
もっと有益なことに脳みそを活用してえよ

V の者クソなぞなぞ

  • 提案表記のないものは kb10uy 発案
  • 大神 mio は近すぎるので NG (tokio そら が上限)
  • 白銀マカレル は遠すぎるので NG
  • Capsitrano まつり は論外
  • DKIM フブキ は厳しい

ホロライブ編 (ほぼ kb10uy、一部提案) (JP女性部門コンプリート)

  • 非同期 IO を提供するときのそら (tokio そら)
  • 日本語入力を快適にする AZKi (AZiK)
@osapon
osapon / size.sql
Created November 8, 2019 04:57
PostgreSQL DB Garbage raito
SELECT pg_database_size('notestock') AS db_size -- Any DB Name
, ROUND(100 * SUM(
CASE (a.n_live_tup + a.n_dead_tup) WHEN 0 THEN 0
ELSE c.relpages * (a.n_dead_tup / (a.n_live_tup + a.n_dead_tup)::numeric)
END
) / SUM(c.relpages), 2) AS garbage_raito
FROM pg_class AS c
JOIN pg_stat_all_tables AS a ON(c.oid = a.relid)
WHERE relpages > 0
package jp.radiko.testasyncalertdialog
import android.os.Bundle
import android.widget.Button
import android.widget.Toast
import androidx.appcompat.app.AlertDialog
import androidx.appcompat.app.AppCompatActivity
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
@fnky
fnky / ANSI.md
Last active April 23, 2024 11:55
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@kb10uy
kb10uy / mpywd.c
Created September 19, 2017 08:25
mpywd - Homo Redirect FCGI
/* compile: gcc -o mpywd -lfcgi mpywd.c */
#include <stdio.h>
#include <fcgi_config.h>
#include <fcgi_stdio.h>
int main(void) {
while (FCGI_Accept() >= 0) {
printf("Content-Type: text/html\n");
printf("Status: 302 Found\n");
printf("Location: https://twitter.com/mpyw\n");