2009年5月26日火曜日

CsharpRepl - Mono

C#もshell環境が出来ますね。
CsharpRepl - Mono

Debugging in Python

pythonを簡単にDebuggingができる
Debugging in Python

2009年5月25日月曜日

2009-04-21 - 風柳メモ

2009-04-21 - 風柳メモ

Silverlight Tips (1) 「Google App Engine」にSilverlightをホストする - 気楽なC#工房

Silverlight Tips (1) 「Google App Engine」にSilverlightをホストする - 気楽なC#工房

GoogleAppEngineでBlazeDS環境を構築してみた « ひよっこ。

GoogleAppEngineでBlazeDS環境を構築してみた « ひよっこ。

Google App Engine SDK could no be found!




windowsを使ってapp-engine-patct-sampleを実行しても左側のエラーメッセージ。
http://code.google.com/p/app-engine-pathc/のサイトに入ってもwindowsの実行方法に対しては書いてなかった。マックの場合、commonのディレクトリに.google_appengineのディレクトリを作ってコピーしてくださいって。でもwindowsでは.ではじめるディレクトリを作れないし。挫折OTL
ソースを分析をスタート。やっとcommon/appenginepath/aecmd.pyの20行
.google_appengine⇒google_appengineに直して解決しました。

2009年5月21日木曜日

2009年5月16日土曜日

여기는 버려진곳 http://khmirage.tistory.com :: 네이버 블로그

여기는 버려진곳 http://khmirage.tistory.com :: 네이버 블로그

ずんWiki - vim

ずんWiki - vim

「vim」の設定

「vim」の設定

Vim初心者的導入メモ 2/3 「vimrc設定」編 - ナレッジエース

Vim初心者的導入メモ 2/3 「vimrc設定」編 - ナレッジエース: "'ウィンドウを最大化して起動 au GUIEnter * simalt ~x '入力モード時、ステータスラインのカラーを変更 augroup InsertHook autocmd! autocmd InsertEnter * highlight StatusLine guifg=#ccdc90 guibg=#2E4340 autocmd InsertLeave * highlight StatusLine guifg=#2E4340 guibg=#ccdc90 augroup END '日本語入力をリセット au BufNewFile,BufRead * set iminsert=0 'タブ幅をリセット au BufNewFile,BufRead * set tabstop=4 shiftwidth=4 '.txtファイルで自動的に日本語入力ON au BufNewFile,BufRead *.txt set iminsert=2 '.rhtmlと.rbでタブ幅を変更 au BufNewFile,BufRead *.rhtml set nowrap tabstop=2 shiftwidth=2 au BufNewFile,BufRead *.rb set nowrap tabstop=2 shiftwidth=2 '全角スペースを視覚化 highlight ZenkakuSpace cterm=underline ctermfg=lightblue guibg=#666666 au BufNewFile,BufRead * match ZenkakuSpace / /"

ずんWiki - vim

ずんWiki - vim: "文字コード"

vimスクリプトの文法 — 名無しのvim使い

vimスクリプトの文法 — 名無しのvim使い

2009年5月13日水曜日

vimrc

set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin

set diffexpr=MyDiff()
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\ let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction

syntax on
set nobackup
set fileencoding=utf-8
set fileencodings=iso-2022-jp,euc-jp,utf-8,ucs2le,ucs-2,cp932
map :w!
map O
map :tabf ./
nnoremap :TlistUpdate
nnoremap :Tlist
nnoremap :TlistSync
map :w!:!javac % && java %<
nmap :w:make
nmap :copen 5
map :w!:!g++ % -o % && !./%<
"map :! ./%<
map :!dev_appserver.py .
map :set guioptions-=m
map :set guioptions+=m
map :q!
set tabstop=4
set shiftwidth=4
set autoindent
set cindent
set smartindent
set nobackup
set showmatch
set number
colors koehler
:nmap ,s :source $VIM/_vimrc
:nmap ,v :e $VIM/_vimrc
:vnoremap < :vnoremap > >gv
set guioptions-=m
set guioptions-=T
set guioptions-=r
set directory=c:/temp
:nmap ,t :tabnew
:nmap ,n :tabn
:nmap ,N :tabN