Skip to content

Instantly share code, notes, and snippets.

@shibafu528
shibafu528 / open_favstar_of_tweet.rb
Created March 31, 2019 01:38 — forked from penguin2716/open_favstar_of_tweet.rb
選択されたTweetのFavstarを見るmikutterプラグイン
# -*- coding: utf-8 -*-
# favstarを開く
Plugin.create :open_favstar_of_tweet do
command(:open_favstar_of_tweet,
name: 'このTweetのFavstarを見る',
condition: Plugin::Command[:HasMessage],
visible: true,
role: :timeline) do |opt|
@shibafu528
shibafu528 / block.rb
Last active May 3, 2019 09:20 — forked from firstspring1845/block.rb
ふあすぷ氏のブロックコマンドPluginに、フィルタリングを後付けしてみた
# -*- coding: utf-8 -*-
Plugin.create :block do
UserConfig[:block_update_interval] ||= 15
@blocked_ids = []
@no_retweets_ids = []
@muted_user_ids = []
@shibafu528
shibafu528 / ebi_beam.rb
Last active August 29, 2015 13:57 — forked from firstspring1845/java_beam.rb
千葉県に謝罪の意を込めて
# -*- coding: utf-8 -*-
Plugin.create :ebi_beam do
command(:ebi_beam,
name: 'エビビーム',
condition: lambda{ |opt| true},
visible: false,
role: :window) do |opt|
Service.primary.post(:message => 'エビビームビビビビビビビwwwwwwwwww')
end
end