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
javascript:window.location='tweetbot:///post?text='+encodeURIComponent('%22'+document.title+'%22%20'+window.location.href); |
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
lists/ | |
subscribers => 180 | |
memberships => 180 | |
list => 180 | |
ownerships => 180 | |
subscriptions => 180 | |
members => 180 | |
subscribers/show => 15 | |
statuses => 300 | |
members/show => 15 |
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 | |
# -*- coding: utf-8 -*- | |
gem 'twitter', '< 5.0.0' | |
require 'rainbow' | |
require 'tweetstream' | |
require 'twitter' | |
TweetStream.configure do |config| | |
config.consumer_key = ENV['CONSUMER_KEY'] |
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
# -*- coding: utf-8 -*- | |
Plugin.create :timestamp_msec do | |
UserConfig[:show_msec] ||= true | |
settings '誰得機能' do | |
boolean '投稿時刻をミリ秒単位まで表示する', :show_msec | |
end | |
Gdk::MiraclePainter.__send__(:define_method, :timestamp_label) { |
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
# 空リプにマッチするてきとーな正規表現 | |
# 先頭に.がつく場合,フッタの開始文字が*[[の場合に対応 | |
/\A\.?(\s| )*(@\w+(\s| )*)+(\z|\*|\[|[)/ |