2013/02/28

suspended (tty output) emacs が出るとき

suspended (tty output)  emacs が出るとき
=========================================================

emacsを開こうとしたら、

[1]  + 26154 suspended (tty output)  emacs

なるエラーが出て、裏で止まってる〜って時。
ウインドウで立ち上がって欲しい人w用の小技(知り合いから拝借)。

emacs-appが入っている場合、GUIアプリケーションのemacsを直に使ってやろう。ログは要らないので廃棄。

自分の使っている、shellの設定ファイル(bashならbashrc、zshなら.zshrc(.profileに書いてもいいよ))に、


function emacs() {
/Applications/MacPorts/Emacs.app/Contents/MacOS/Emacs $@ 2> /dev/null
}

を追加。

2013/02/01

pythonをはじめるためのリンク


pythonをはじめるためのリンク
========================================

1. 本家

http://www.python.org/

2. 日本ユーザー会

http://python.jp/Zope.1

3. python tutrial 日本語 2.7.1

http://www.python.jp/doc/release/tutorial/index.html

4. tutrial 動画 英語

http://www.lastday.jp/2011/05/30/python-tutorial

5. Learn Python The Hard Way

http://learnpythonthehardway.org/book/

6. document 説明書 日本語 2.7.1

http://www.python.jp/doc/release/

おすすめの活用順序
========================================

基本は、3をやりながら、4をチラ見、6は辞書代わり。
それが終わったら、5をよんでみる。
1,2は情報集めのため。