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
/** | |
* nicovideo-search | |
* | |
*/ | |
makeSearchCommand({ | |
name: "nicovideo", | |
url: "http://www.nicovideo.jp/search/{QUERY}", | |
icon: "http://www.nicovideo.jp/favicon.ico", | |
description: "Searches nicovideo for your words.", | |
}); |
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
#### | |
# .zshrc file | |
#### | |
export LANG=ja_JP.UTF-8 | |
export MANPATH=/usr/local/man:/usr/share/man | |
LD_LIBRARY_PATH=$HOME/lib:/usr/local/lib:/usr/X11R6/lib:/usr/lib:$LD_LIBRARY_PATH | |
export LD_LIBRARY_PATH | |
# PATH | |
export INCLUDE=$HOME/include:/usr/local/include:/usr/include |
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 | |
# 常にtrunk最新を追っかけたい人柱向けシェルスクリプト。 | |
# 依存関係は割愛。 | |
# svn co svn://toshia.dip.jp/mikutter/trunk ~/.mikutter/src | |
# ↑やってからこのファイルをパスの渡っているとこ(~/binとか)にDLしてchmod +x。 | |
# 好きなruby使いたいなら適当に変更してね | |
svn up $HOME/.mikutter/src | |
ruby $HOME/.mikutter/src/mikutter.rb $@ |
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
@echo off | |
call "C:\Program Files\Microsoft Visual Studio 10.0\VC" x86 | |
set CYGWIN="winsymlinks tty emacs nodosfilewarning glob" | |
set LANG=ja_JP.UTF-8 | |
set LC_CTYPE=ja_JP.UTF-8 | |
REM bash --login -i |
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
#Licence:NYSL | |
#http://www.kmonos.net/nysl/ | |
# | |
class Matrix | |
def []=(i,j,x) | |
@rows[i][j]=x | |
end | |
end | |
class Vector |
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 | |
# | |
#MinGW Package search tool | |
# | |
#author:mongrelP | |
#mailto:[email protected] | |
#Licence:CC0 or NYSL | |
#CCO: http://creativecommons.org/publicdomain/zero/1.0/ | |
#NYSL: http://www.kmonos.net/nysl/ | |
#nothing option : show list |
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 | |
./bootstrap-prefix.sh $EPREFIX tree | |
./bootstrap-prefix.sh $EPREFIX/tmp make | |
./bootstrap-prefix.sh $EPREFIX/tmp wget | |
./bootstrap-prefix.sh $EPREFIX/tmp sed | |
#./bootstrap-prefix.sh $EPREFIX/tmp coreutils #coreutils5 | |
./bootstrap-prefix.sh $EPREFIX/tmp coreutils6 #coreutils6 | |
./bootstrap-prefix.sh $EPREFIX/tmp findutils5 | |
./bootstrap-prefix.sh $EPREFIX/tmp tar | |
./bootstrap-prefix.sh $EPREFIX/tmp patch |
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 | |
hash -r #if use csh : rehash | |
emerge --oneshot sed | |
emerge --oneshot --nodeps bash | |
emerge --oneshot wget | |
emerge --oneshot --nodeps baselayout-prefix | |
emerge --oneshot --nodeps xz-utils | |
emerge --oneshot --nodeps m4 | |
emerge --oneshot --nodeps flex | |
emerge --oneshot --nodeps bison |
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
if which eix > /dev/null | |
then | |
alias esearch="eix " | |
alias eiup="eix-update " | |
alias eisync="eix-sync " | |
alias esync="eix-sync " | |
else | |
alias esearch="emerge --search " | |
alias esync="emerge --sync " | |
fi |
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 | |
echo "#####################" | |
echo "# get install files #" | |
echo "#####################" | |
gpg --keyserver subkeys.pgp.net --recv-keys 2D182910 | |
wget -nc ftp://ftp.iij.ad.jp/pub/linux/gentoo/releases/amd64/autobuilds/current-stage3/stage3-amd64-*.tar.bz2 | |
wget -nc ftp://ftp.iij.ad.jp/pub/linux/gentoo/releases/amd64/autobuilds/current-stage3/stage3-amd64-*.tar.bz2.* | |
wget -nc ftp://ftp.iij.ad.jp/pub/linux/gentoo/snapshots/portage-latest.tar.xz | |
wget -nc ftp://ftp.iij.ad.jp/pub/linux/gentoo/snapshots/portage-latest.tar.xz.* |
OlderNewer