Skip to content

Instantly share code, notes, and snippets.

View funatsufumiya's full-sized avatar

Fumiya Funatsu funatsufumiya

View GitHub Profile
@funatsufumiya
funatsufumiya / script.js
Last active February 3, 2016 04:42
Lancersで終了済みのタスクを灰色表示するためのスクリプト(for Chrome's CJS plugin)
jQuery(function($){
if(location.href.indexOf("http://www.lancers.jp/work/") === 0){
var proposes = $("table.prof > tbody > tr > td.stats.propose");
proposes.each(function(e){
var $this = $(this);
if($this.children().length === 3){
var current = $this.children()[1].innerText;
var t = $this.children()[2].innerText;
var r = /^\(募集 ([0-9]+)件\)$/;
var total = t.match(r)[1];
@roundand
roundand / OpenWithSublimeText3.bat
Last active March 13, 2024 17:38 — forked from mrchief/LICENSE.md
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 7)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@youcune
youcune / romantable.txt
Last active March 19, 2024 01:37
AZIK配列のいつも使うGoogle日本語入力用ローマ字テーブル
~ ~
, 、
. 。
/ ・
: ー
; っ
[ 「
] 」
a あ
ba ば
@noborus
noborus / ibus_toggle.rb
Last active November 6, 2021 11:48
ibus_toggle のRuby版(iBus 1.4以下対応) ruby-dbusが必要($ gem install ruby-dbus)
#! /usr/bin/ruby
# -*- coding: utf-8 -*-
require 'dbus'
IBUS_SERVICE="org.freedesktop.IBus"
IBUS_PATH_IBUS="/org/freedesktop/IBus"
IBUS_INTERFACE_IBUS="org.freedesktop.IBus"
IBUS_INTERFACE_INPUTCONTEXT="org.freedesktop.IBus.InputContext"
@moroya
moroya / jquery.mobile.events.js
Created April 24, 2013 08:48
jQuery mobile 1.3.1からモバイルイベント部分のみを取り出したもの
/**
* jquery.mobile.vmouse.js
*
* https://github.com/jquery/jquery-mobile/blob/1.3.1/js/jquery.mobile.vmouse.js
*
* Copyright 2010, 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license.
* http://jquery.org/license
*/
@dciccale
dciccale / README.md
Last active October 22, 2021 21:52
Tiny Cross-browser DOM ready function in 111 bytes of JavaScript

DOM Ready

Tiny Cross-browser DOM ready function in 111 bytes of JavaScript.