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
#!/bin/sh | |
#This script removes a submodule of git. | |
#All you have to do is to put this script to a pathed directiry, and type `git submodule-rm <submodule>` | |
#(You may have to type `chmod +x git-submodule-rm`) :P | |
if [ $# -ne 1 ] ; then | |
echo "usage: git submodule-rm <submodule>"; | |
echo "No submodule specified, no submodule removed." 1>&2; | |
exit 1; | |
fi |
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/ruby | |
require 'rubygems' | |
require 'mechanize' | |
require 'kconv' | |
require "pit" | |
username , password = ARGV | |
if (config = Pit.get("eccs-password")) == {} then |
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
;;背景色の設定 | |
(custom-set-faces | |
'(default ((t | |
(:background "#000040" :foreground "#e0e0e0") | |
))) | |
'(cursor ((((class color) | |
(background dark)) | |
(:background "#00AA00")) | |
(((class color) | |
(background light)) |
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
[user] | |
name = foo bar | |
email = [email protected] | |
[color] | |
ui = auto | |
[push] | |
default = tracking | |
[http] | |
sslVerify = False | |
[alias] |
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
*.aux | |
*.log | |
*~ |
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
require "android"; | |
droid = Android.new | |
droid.smsSend("電話番号","送る内容") | |
droid.makeToast( "ちゃんと送りました。") |
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
Markdown.pl %1 > %~n1.html |
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
#!/bin/sh | |
if [ $# -ne 1 ] ;then | |
cat <<EOF | |
usage : mkembedpdf pdffile | |
EOF | |
exit | |
fi | |
PS_NAME=$(echo $1|sed -e 's/\..*$//g').ps |
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
プログラミング構成論E26 | 高度情報化社会の機械工学1225教室 | ||||
---|---|---|---|---|---|
英語二列10-205 | 実験 | ||||
物性化学1102教室 | 宇宙科学実習IIE38 | 実験 | |||
情報技術論511教室 | 宇宙科学実習IIE38 | モンゴル語(初級)761教室 | |||
ロボゼミ516教室 |
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
;;Setting of flymake | |
(require 'flymake) | |
(defun flymake-cc-init () | |
(let* ((temp-file (flymake-init-create-temp-buffer-copy | |
'flymake-create-temp-inplace)) | |
(local-file (file-relative-name | |
temp-file | |
(file-name-directory buffer-file-name)))) | |
(list "g++" (list "-Wall" "-Wextra" "-fsyntax-only" local-file)))) |
OlderNewer