This file contains hidden or 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
#!/bin/sh | |
MAKECMD=/usr/bin/make | |
# ANTCMD=/usr/local/bin/ant | |
ANTCMD=/cygdrive/c/dev/ant/bin/ant | |
FILTER="/usr/bin/nkf -Swud" | |
if [ -r Makefile -o -r makefile ]; then | |
"$MAKECMD" "$@" | |
elif [ -r build.xml ]; then |
This file contains hidden or 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 pixiv ajaxer | |
// @namespace http://d.hatena.ne.jp/MillyC/ | |
// @include http://www.pixiv.net/* | |
// @grant GM_addStyle | |
// @grant GM_xmlhttpRequest | |
// @author Milly | |
// @version 1.0.20130315 | |
// ==/UserScript== |
This file contains hidden or 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 WikipediaCiteNoteTooltip.user.js | |
// @namespace http://d.hatena.ne.jp/MillyC/ | |
// @description Wikipedia cite-note tooltip | |
// @include http://*.wikipedia.org/wiki/* | |
// ==/UserScript== | |
(function(){ | |
GM_addStyle( |
This file contains hidden or 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
" Vim plugin file - highlight_spaces | |
" | |
" Last Change: 08 February 2010 | |
" Maintainer: Milly | |
" Purpose: Add highlight for spaces. | |
"============================================================================= | |
if exists("loaded_highlight_spaces") | |
finish | |
endif |
This file contains hidden or 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
" Vim plugin file - commentout | |
" | |
" Last Change: 08 February 2008 | |
" Maintainer: Milly | |
" Purpose: Mapping keys to commentout(\c) and uncomment(\u). | |
"============================================================================= | |
" Define "{{{1 | |
if exists("loaded_commentout") | |
finish | |
endif |
This file contains hidden or 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
" Vim plugin file - openurl | |
" | |
" Last Change: 13 Mar 2013 | |
" Maintainer: Milly | |
" Purpose: Open url or file with default viewer. | |
" Options: | |
" g:openurl_regex - URL match regex (default: empty) | |
" g:openurl_dos_path - Enable DOS path (default: 0) | |
" g:openurl_encoding - Character encoding for URL (default: auto detect) | |
" g:openurl_highlight - Highlight URL (default: 1) |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8" ?> | |
<Module> | |
<ModulePrefs title="ココロ" | |
title_url="http://www.cocolog-nifty.com/cocolo/" | |
author="Milly" | |
author_link="http://d.hatena.ne.jp/MillyC/" | |
width="120" | |
height="220"> | |
</ModulePrefs> | |
<UserPref name="character" display_name="キャラ" datatype="enum" default_value=""> |
This file contains hidden or 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 allunofficial.net extender | |
// @namespace http://d.hatena.ne.jp/MillyC/ | |
// @include http://allunofficial.net/trpg/action.php* | |
// @include http://allunofficial.net/trpg/arianrhod_pc_making.html | |
// ==/UserScript== | |
// Sortable skill table {{{1 | |
if ('addLineSkill' in unsafeWindow) { |
This file contains hidden or 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 | |
require 'rubygems' | |
require 'rubygems/commands/fetch_command' | |
class Gem::Commands::FetchCommand | |
def add_version_option_with_fetch_depends | |
add_version_option_without_fetch_depends | |
add_option('-y', '--[no-]dependencies', | |
"Fetch dependent gems") do |value, options| |
OlderNewer