Skip to content

Instantly share code, notes, and snippets.

View oieioi's full-sized avatar
🐙
🐙🐙🐙🐙🐙🐙🐙🐙🐙

oieioi

🐙
🐙🐙🐙🐙🐙🐙🐙🐙🐙
View GitHub Profile
@oieioi
oieioi / showmeta.user.js
Created January 25, 2021 03:27 — forked from SyunWatanabe/showmeta.js
show meta
// ==UserScript==
// @name show meta
// @namespace http://tampermonkey.net/
// @version 0.1
// @description show meta what we want
// @author me
// @match *://*/*
// @grant none
// ==/UserScript==
@oieioi
oieioi / moneyforward_timesheet_completer.user.js
Created December 26, 2019 08:50 — forked from akinov/moneyforward_timesheet_completer.js
マネフォクラウドの勤怠一括入力
// ==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==
@oieioi
oieioi / search_commit_msg
Last active October 7, 2016 09:25 — forked from necojackarc/search_commit_msg
Getting commit massage samples script powered by http://commit-m.minamijoyo.com/
#!/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)
@oieioi
oieioi / favorites_trace.rb
Last active November 18, 2017 10:33 — forked from no6v/trace.rb
Trace back home or user timeline
# 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