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 show meta | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description show meta what we want | |
// @author me | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
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 MoneyForward ๅคๅๆ้ไธๆฌๅ ฅๅใใฟใณ | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description MoneyForward ๅคๅๆ้ไธๆฌๅ ฅๅใใฟใณ | |
// @author You | |
// @match https://payroll.moneyforward.com/my/multiple_timesheet_employee_daily_records/edit | |
// @grant none | |
// ==/UserScript== |
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/env ruby | |
require "net/http" | |
require "uri" | |
require "nokogiri" | |
params = { keyword: ARGV.join("\s") } | |
uri = URI.parse("http://commit-m.minamijoyo.com/commits/search") | |
uri.query = URI.encode_www_form(params) |
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
# encoding: UTF-8 | |
Earthquake.once do | |
module TwitterOAuth | |
class Client | |
def favorites_list(user, **options) | |
options = URI.encode_www_form(options) | |
get("/favorites/list.json?screen_name=#{user}&#{options}") | |
end | |
end | |
end |