Skip to content

Instantly share code, notes, and snippets.

@penguin2716
penguin2716 / mikutter_shrink_words.rb
Last active August 29, 2015 13:56
投稿文字列の3文字以上のアルファベット文字列(internationalizationとか)を縮めて(i18nとか)ツイートするmikutterプラグイン
# -*- coding: utf-8 -*-
Plugin.create :shrink_words do
def shrink_words(src)
str = src
src.scan(/[a-zA-Z_]+/).map{ |s|
if s.size > 3
[s, s[0] + (s.size - 2).to_s + s[-1]]
else
[s, s]
@penguin2716
penguin2716 / mikutter_haishou.rb
Created February 10, 2014 09:28
「はい」を全て「拝承」に書き換えてからツイートするmikutterプラグイン
# -*- coding: utf-8 -*-
Plugin.create :haishou do
filter_gui_postbox_post do |gui_postbox|
text = Plugin.create(:gtk).widgetof(gui_postbox).widget_post.buffer.text.gsub(/はい/, "拝承")
Service.primary.post :message => text
Plugin.call(:before_postbox_post, text)
Plugin.create(:gtk).widgetof(gui_postbox).widget_post.buffer.text = ''
Plugin.filter_cancel!
@penguin2716
penguin2716 / asetroot.sh
Created February 9, 2014 07:01
update wallpaper after scaling and cropping the image to the current screen resolution
#!/bin/bash
#
# asetroot.sh
#
# Copyright (c) 2014 Takuma Nakajima
#
# This software is released under the MIT License.
# http://opensource.org/licenses/mit-license.php
#
@penguin2716
penguin2716 / scale_resolution.rb
Created February 9, 2014 06:27
update screen resolution by setting scale ratio automatically
#!/usr/bin/env ruby
=begin
Copyright (c) 2014 Takuma Nakajima
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
=end
@penguin2716
penguin2716 / mikutter_download_all_media.rb
Created February 5, 2014 05:54
流れてきたツイートに含まれる画像とかを全部保存するmikutterプラグイン
# -*- coding: utf-8 -*-
=begin
mikutter_download_all_media
Copyright (c) 2014 Takuma Nakajima
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
=end
@penguin2716
penguin2716 / reset_tweet_bgcolor.mdc
Created February 4, 2014 11:01
mikutterのツイート背景色とかをリセットするmikutter_dbus_consoleスクリプト
#!/home/penguin/mikutter_dbus_console.rb
UserConfig[:mumble_basic_font] = 'Sans 10'
UserConfig[:mumble_basic_color] = [0, 0, 0]
UserConfig[:mumble_reply_font] = 'Sans 8'
UserConfig[:mumble_reply_color] = [255*0x66, 255*0x66, 255*0x66]
UserConfig[:mumble_basic_left_font] = 'Sans 10'
UserConfig[:mumble_basic_left_color] = [0, 0, 0]
UserConfig[:mumble_basic_right_font] = 'Sans 10'
UserConfig[:mumble_basic_right_color] = [255*0x99, 255*0x99, 255*0x99]
@penguin2716
penguin2716 / mikutter_dbus_console.rb
Last active October 19, 2015 16:10
mikutter dbus console
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
=begin
mikutter dbus console
Copyright (c) 2014 Takuma Nakajima
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
@penguin2716
penguin2716 / mkgentoousb.sh
Created January 30, 2014 14:39
An easy script to create Gentoo/Linux installation usb stick.
#!/bin/sh
set -e
echo "This is an easy script to create Gentoo/Linux installation usb stick."
echo
if [ $# -ne 2 ]
then
echo "usage: $0 /dev/sdx /path/to/gentoo_install_disk.iso"
@penguin2716
penguin2716 / auto_wget_img.rb
Last active January 4, 2016 10:58
まとめサイトとかから自動で画像をwgetしてくれるRubyスクリプト
#!/usr/bin/env ruby
#-*- coding: utf-8 -*-
=begin
Auto wget image
Copyright (c) 2014 Takuma Nakajima
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
@penguin2716
penguin2716 / vimlike_textview.rb
Created January 1, 2014 12:29
vimlike_textview for mikutter (development preview)
#!/usr/bin/env ruby
#-*- coding: utf-8 -*-
require 'gtk2'
require 'gtksourceview2'
class VimlikeTextView < Gtk::SourceView
attr_accessor :current_mode, :default_bgcolor, :insert_bgcolor, :visual_bgcolor, :select