(´へεへ`*) < 10日目だよ〜
(´へεへ`*) < 昨日は@penguin2716氏、明日は@teshi04氏だよ〜
(´へεへ`*) < ………
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |
| # -*- coding: utf-8 | |
| miquire :addon, 'addon' | |
| miquire :core, 'environment' | |
| miquire :addon, 'settings' | |
| require 'net/http' | |
| module Net | |
| class <<HTTP | |
| alias new_org new |
| /home/osa/app/mikutter/trunk/core/addon/directmessage/dmlistview.rb: line 37 | |
| Gtk-CRITICAL **:IA__gtk_tree_view_get_cell_area: assertion `gtk_widget_get_realized (GTK_WIDGET (tree_view))' failed | |
| /home/osa/app/mikutter/trunk/core/addon/directmessage/dmlistview.rb: line 38 | |
| GLib-GObject-WARNING **:value "-1238915440" of type `gint' is invalid or out of range for property `wrap-width' of type `gint' |
| { | |
| "twitpic": { | |
| "url": "^http://twitpic\\.com/[a-zA-Z0-9]+", | |
| "attribute": { | |
| "id": "photo-display" | |
| } | |
| }, | |
| "yfrog": { | |
| "url": "^http://yfrog\\.com/[a-zA-Z0-9]+", | |
| "attribute": { |
| #!/usr/bin/env ruby | |
| #-*- coding: utf-8 -*- | |
| require 'gtk2' | |
| require 'socket' | |
| # mikutter_server.rb の "localhost" を "0.0.0.0" に変えると別のマシンからもアクセスできるよん | |
| # ユーザ設定の読み込み | |
| CONFIG = "#{ENV['HOME']}/.mikutterworldrc" | |
| VALID_CONFIG = ['host', 'port', 'footer'] |
(´へεへ`*) < 10日目だよ〜
(´へεへ`*) < 昨日は@penguin2716氏、明日は@teshi04氏だよ〜
(´へεへ`*) < ………
| # -*- 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) { |
| # -*- coding: utf-8 -*- | |
| class ::Gdk::MiraclePainter | |
| # 名前のあとにスクリーンネームを表示たい。 | |
| # また、スクリーンネームの前には @ をつけておきたい。 | |
| def header_left_markup | |
| user = message.user | |
| if user.respond_to?(:idname) | |
| Pango.parse_markup("<b>#{Pango.escape(user.name || '')}</b> @#{Pango.escape(user.idname)}") | |
| else |
| WE ARE TEOKURE WORLD | |
| 行こうよまぶしいておくれ世界 | |
| スターのスイッチONにして(ファボォ…↑) | |
| ごらんよ誰かがておくれている | |
| おんなじ中身のツイ投げて | |
| mikutterが好きな人だけが | |
| ておくれていく HELLO TEOKURE WORLD! |
| Plugin.create(:mikutter_profile_media) do | |
| profiletab :usermediatimeline, _("最近の画像つきツイート") do | |
| set_icon Skin.get("aclog.png") | |
| uid = user.id | |
| i_timeline = timeline nil do | |
| order do |message| | |
| retweet = message.retweeted_statuses.find{ |r| uid == r.user.id } | |
| (retweet || message)[:created].to_i end end | |
| Service.primary.user_timeline(user_id: user[:id], include_rts: 1, count: [UserConfig[:profile_show_tweet_once], 200].min).next{ |tl| |