- download
- Edit your
.autotest
and add this line:Autotest::Growl::image_dir = File.expand_path("~")+'/Dropbox/Public/fu'
(or wherever you unpacked fu.zip) - ???????
- Profit!
This file contains 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
// サジェスト付き検索 | |
// Google, Wikipedia などが使用可能 | |
// s を入力するとエンジン選択画面が開く。 j/k で上下へ。 Enter や s で決定。 | |
// エンジンを決定したら検索語句を入力する画面へ。ここで文字を入力して TAB を押すとサジェストの結果で補完される。 | |
key.setViewKey('s', function (ev, arg) { | |
let engines = util.suggest.getEngines(); | |
// If you want to use all available suggest engines, | |
// change suggestEngines value to util.suggest.filterEngines(engines); |
This file contains 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
// ==UserScript== | |
// @name expand-image-link | |
// @namespace http://www.hatena.ne.jp/hitode909 | |
// @include * | |
// @exclude http://fastladder.com/reader/ | |
// ==/UserScript== | |
(function() { | |
var meta = document.querySelector('meta[name="expand-image"]'); |
This file contains 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
gem 'rails3-generators' | |
gem 'mongoid', '>= 2.0.0.beta' | |
gem 'bson_ext' | |
gem 'haml' | |
gem 'hirb', :group => :development | |
gem 'what_methods', :group => :development | |
gem 'rspec-rails', '>= 2.0.0.beta', :group => :test | |
gem 'rr', :group => :test |
This file contains 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
source 'http://rubygems.org' | |
gem 'rails', '3.0.0' | |
gem 'sqlite3-ruby', :require => 'sqlite3' | |
group :development, :test do | |
gem 'rspec','>=2.0.0.beta.20' | |
gem 'rspec-rails','>=2.0.0.beta.20' | |
gem 'ZenTest' | |
gem 'autotest' |
This file contains 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
group :test do | |
gem 'rspec-rails', '>= 2.0.0.beta', :group => :development | |
gem 'rspec-integration', '>= 2.0.0.beta' | |
gem 'rr' | |
gem 'database_cleaner' | |
gem 'capybara' | |
gem 'launchy' | |
gem 'autotest-rails' | |
gem 'machinist_mongo', :require => 'machinist/mongoid' |
This file contains 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
// ==UserScript== | |
// @name TogetterFilter | |
// @namespace TogetterFilter | |
// @description Togetterを任意のユーザー名を用いてフィルタリング | |
// @include http://togetter.com/* | |
// ==/UserScript== | |
(function() { | |
// ここにフィルタリングしたいユーザーのIDを''で囲い、,で区切って記述して下さい |
This file contains 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
diff --git a/xpi/chrome/content/library/20_model.js b/xpi/chrome/content/library/20_model.js | |
index 47921b0..0c13b43 100755 | |
--- a/xpi/chrome/content/library/20_model.js | |
+++ b/xpi/chrome/content/library/20_model.js | |
@@ -1154,7 +1154,7 @@ models.register({ | |
}); | |
}).addCallback(function(res){ | |
var doc = convertToHTMLDocument(res.responseText); | |
- if(!doc.getElementById('title')) | |
+ if(!doc.getElementById('saveTitle')) |
This file contains 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/ruby | |
# -*- coding: utf-8; -*- | |
# | |
require 'open-uri' | |
require 'nokogiri' | |
puts "魔王「この我のものとなれ、勇者よ」勇者「断る!」" | |
puts "橙乃ままれ" | |
puts "\n\n" |
This file contains 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
// ==UserScript== | |
// @name TogetterFilter | |
// @namespace TogetterFilter | |
// @description Togetterを任意のユーザー名を用いてフィルタリング | |
// @include http://togetter.com/* | |
// @require https://github.com/azu/usconfig/raw/v1.13/usconfig.js | |
// ==/UserScript== | |
// 設定画面の定義 - http://d.hatena.ne.jp/h1mesuke/20100713/p1 | |
Config.define('usc_basic', function() { | |
with (this.builder) { |
OlderNewer